This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make pp_reverse fetch the lexical $_ from the correct pad
[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
7e1af8bc 13package main;
14use IPC::Open3 'open3';
151