This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
untodo the no-longer-failing todo test for rgs' patch
[perl5.git] / lib / open3.pl
CommitLineData
155f9b97
S
1# This legacy library is deprecated and will be removed in a future
2# release of perl.
3#
7e1af8bc 4# This is a compatibility interface to IPC::Open3. New programs should
5# do
93a17b20 6#
7e1af8bc 7# use IPC::Open3;
463ee0b2 8#
7e1af8bc 9# instead of
93a17b20 10#
7e1af8bc 11# require 'open3.pl';
93a17b20 12
155f9b97
S
13warn( "The 'open3.pl' legacy library is deprecated and will be"
14 . " removed in the next major release of perl. Please use the"
15 . " IPC::Open3 module instead." );
16
7e1af8bc 17package main;
18use IPC::Open3 'open3';
191