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/Time | |
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/Time')
-rw-r--r-- | lib/Time/Local.pm | 2 | ||||
-rw-r--r-- | lib/Time/gmtime.pm | 3 | ||||
-rw-r--r-- | lib/Time/localtime.pm | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/lib/Time/Local.pm b/lib/Time/Local.pm index 61805849f8..e99aab1321 100644 --- a/lib/Time/Local.pm +++ b/lib/Time/Local.pm @@ -1,5 +1,5 @@ package Time::Local; -require 5.6.0; +use 5.006; require Exporter; use Carp; use strict; diff --git a/lib/Time/gmtime.pm b/lib/Time/gmtime.pm index 39cfdc2fd7..4e1359b36d 100644 --- a/lib/Time/gmtime.pm +++ b/lib/Time/gmtime.pm @@ -1,8 +1,9 @@ package Time::gmtime; use strict; +use 5.006_001; + use Time::tm; -use 5.6.1; our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); BEGIN { use Exporter (); diff --git a/lib/Time/localtime.pm b/lib/Time/localtime.pm index 5495559863..c3d9fb3608 100644 --- a/lib/Time/localtime.pm +++ b/lib/Time/localtime.pm @@ -1,8 +1,9 @@ package Time::localtime; use strict; +use 5.006_001; + use Time::tm; -use 5.6.1; our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION); BEGIN { use Exporter (); |