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 /lib/File | |
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 'lib/File')
-rw-r--r-- | lib/File/Basename.pm | 2 | ||||
-rw-r--r-- | lib/File/CheckTree.pm | 2 | ||||
-rw-r--r-- | lib/File/Compare.pm | 2 | ||||
-rw-r--r-- | lib/File/Copy.pm | 2 | ||||
-rw-r--r-- | lib/File/Find.pm | 2 | ||||
-rw-r--r-- | lib/File/Path.pm | 2 | ||||
-rw-r--r-- | lib/File/stat.pm | 3 |
7 files changed, 8 insertions, 7 deletions
diff --git a/lib/File/Basename.pm b/lib/File/Basename.pm index e16f87187e..c7657881b9 100644 --- a/lib/File/Basename.pm +++ b/lib/File/Basename.pm @@ -135,7 +135,7 @@ BEGIN { -use 5.6.0; +use 5.006; use warnings; our(@ISA, @EXPORT, $VERSION, $Fileparse_fstype, $Fileparse_igncase); require Exporter; diff --git a/lib/File/CheckTree.pm b/lib/File/CheckTree.pm index 35f7906e53..e58e3ecb2c 100644 --- a/lib/File/CheckTree.pm +++ b/lib/File/CheckTree.pm @@ -2,7 +2,7 @@ package File::CheckTree; our $VERSION = '4.1'; -require 5.6.0; +use 5.006; require Exporter; use warnings; diff --git a/lib/File/Compare.pm b/lib/File/Compare.pm index b83ba62583..e1d5e7db91 100644 --- a/lib/File/Compare.pm +++ b/lib/File/Compare.pm @@ -1,6 +1,6 @@ package File::Compare; -use 5.6.0; +use 5.006; use strict; use warnings; our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $Too_Big); diff --git a/lib/File/Copy.pm b/lib/File/Copy.pm index 7daa3ed60d..afb7635f69 100644 --- a/lib/File/Copy.pm +++ b/lib/File/Copy.pm @@ -7,7 +7,7 @@ package File::Copy; -use 5.6.0; +use 5.006; use strict; use warnings; use Carp; diff --git a/lib/File/Find.pm b/lib/File/Find.pm index 1ebfba3184..de0b5340e4 100644 --- a/lib/File/Find.pm +++ b/lib/File/Find.pm @@ -1,7 +1,7 @@ package File::Find; +use 5.006; use strict; use warnings; -use 5.6.0; our $VERSION = '1.02'; require Exporter; require Cwd; diff --git a/lib/File/Path.pm b/lib/File/Path.pm index 7d56d48f28..3560a970a2 100644 --- a/lib/File/Path.pm +++ b/lib/File/Path.pm @@ -91,7 +91,7 @@ Charles Bailey <F<bailey@newman.upenn.edu>> =cut -use 5.6.0; +use 5.006; use Carp; use File::Basename (); use Exporter (); diff --git a/lib/File/stat.pm b/lib/File/stat.pm index aff5d03020..accae9f559 100644 --- a/lib/File/stat.pm +++ b/lib/File/stat.pm @@ -1,8 +1,9 @@ package File::stat; +use 5.006; + use strict; use warnings; -use 5.6.0; our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS); our $VERSION = '1.00'; |