diff options
author | Ronald J. Kimball <rjk@linguist.dartmouth.edu> | 2001-09-21 08:34:40 -0400 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-21 17:08:24 +0000 |
commit | 3b825e419da1c361eab06a1e6d287276c0aef241 (patch) | |
tree | 3bf9831a1ca2b68cc3821988b1fd9d8cdcc2f6e0 /ext/IO | |
parent | d5115885304a47d8240951ede80584b00fa589b6 (diff) | |
download | perl-3b825e419da1c361eab06a1e6d287276c0aef241.tar.gz |
avoid v-strings with require/use
Message-Id: <20010921123440.A148500@linguist.thayer.dartmouth.edu>
p4raw-id: //depot/perl@12113
Diffstat (limited to 'ext/IO')
-rw-r--r-- | ext/IO/lib/IO/Dir.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/File.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Handle.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Pipe.pm | 2 | ||||
-rw-r--r-- | ext/IO/lib/IO/Seekable.pm | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/ext/IO/lib/IO/Dir.pm b/ext/IO/lib/IO/Dir.pm index d09eb7ff0b..0a083ef9aa 100644 --- a/ext/IO/lib/IO/Dir.pm +++ b/ext/IO/lib/IO/Dir.pm @@ -6,7 +6,7 @@ package IO::Dir; -use 5.6.0; +use 5.006; use strict; use Carp; diff --git a/ext/IO/lib/IO/File.pm b/ext/IO/lib/IO/File.pm index 83699fb55b..240033f304 100644 --- a/ext/IO/lib/IO/File.pm +++ b/ext/IO/lib/IO/File.pm @@ -103,7 +103,7 @@ Derived from FileHandle.pm by Graham Barr E<lt>F<gbarr@pobox.com>E<gt>. =cut -require 5.6.1; +use 5.006_001; use strict; our($VERSION, @EXPORT, @EXPORT_OK, @ISA); use Carp; diff --git a/ext/IO/lib/IO/Handle.pm b/ext/IO/lib/IO/Handle.pm index 37aa99c7bf..6fdba17304 100644 --- a/ext/IO/lib/IO/Handle.pm +++ b/ext/IO/lib/IO/Handle.pm @@ -247,7 +247,7 @@ Derived from FileHandle.pm by Graham Barr E<lt>F<gbarr@pobox.com>E<gt> =cut -require 5.6.1; +use 5.006_001; use strict; our($VERSION, @EXPORT_OK, @ISA); use Carp; diff --git a/ext/IO/lib/IO/Pipe.pm b/ext/IO/lib/IO/Pipe.pm index 27747ce43c..a500f29280 100644 --- a/ext/IO/lib/IO/Pipe.pm +++ b/ext/IO/lib/IO/Pipe.pm @@ -6,7 +6,7 @@ package IO::Pipe; -require 5.6.1; +use 5.006_001; use IO::Handle; use strict; diff --git a/ext/IO/lib/IO/Seekable.pm b/ext/IO/lib/IO/Seekable.pm index 987cbc39d5..684b8bc70d 100644 --- a/ext/IO/lib/IO/Seekable.pm +++ b/ext/IO/lib/IO/Seekable.pm @@ -94,7 +94,7 @@ Derived from FileHandle.pm by Graham Barr E<lt>gbarr@pobox.comE<gt> =cut -require 5.6.1; +use 5.006_001; use Carp; use strict; our($VERSION, @EXPORT, @ISA); |