This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
4f890a3067e1198f missed qr// from t/re/pat.t in its refactoring in two places.
[perl5.git] / lib / open3.pl
CommitLineData
0111154e
Z
1warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n";
2
155f9b97
S
3# This legacy library is deprecated and will be removed in a future
4# release of perl.
5#
7e1af8bc 6# This is a compatibility interface to IPC::Open3. New programs should
7# do
93a17b20 8#
7e1af8bc 9# use IPC::Open3;
463ee0b2 10#
7e1af8bc 11# instead of
93a17b20 12#
7e1af8bc 13# require 'open3.pl';
93a17b20 14
7e1af8bc 15package main;
16use IPC::Open3 'open3';
171