From 5f4126c4053727fca3daf460aeaca04d8744eb97 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Wed, 31 Oct 2007 07:26:02 -0500 Subject: [PATCH] - Update Time::Local to latest version Message-ID: p4raw-id: //depot/perl@32211 --- lib/Time/Local.pm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lib/Time/Local.pm b/lib/Time/Local.pm index d7fe023..764e27e 100644 --- a/lib/Time/Local.pm +++ b/lib/Time/Local.pm @@ -7,7 +7,7 @@ use strict; use integer; use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK ); -$VERSION = '1.17'; +$VERSION = '1.18'; @ISA = qw( Exporter ); @EXPORT = qw( timegm timelocal ); @@ -222,12 +222,16 @@ C and C. =head1 FUNCTIONS +=head2 C and C + This module exports two functions by default, C and C. The C and C functions perform range checking on the input $sec, $min, $hour, $mday, and $mon values by default. +=head2 C and C + If you are working with data you know to be valid, you can speed your code up by using the "nocheck" variants, C and C. These variants must be explicitly imported. @@ -350,6 +354,15 @@ Please submit bugs to the CPAN RT system at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Time-Local or via email at bug-time-local@rt.cpan.org. +=head1 COPYRIGHT + +Copyright (c) 1997-2003 Graham Barr, 2003-2007 David Rolsky. All +rights reserved. This program is free software; you can redistribute +it and/or modify it under the same terms as Perl itself. + +The full text of the license can be found in the LICENSE file included +with this module. + =head1 AUTHOR This module is based on a Perl 4 library, timelocal.pl, that was -- 2.7.4