|
{
$DateTime::TimeZone::America::Guadeloupe::VERSION = '1.46' ;
}
@DateTime::TimeZone::America::Guadeloupe::ISA = ( 'Class::Singleton' , 'DateTime::TimeZone' );
my $spans =
[
[
DateTime::TimeZone::NEG_INFINITY,
60287429168,
DateTime::TimeZone::NEG_INFINITY,
60287414400,
-14768,
0,
'LMT'
],
[
60287429168,
DateTime::TimeZone::INFINITY,
60287414768,
DateTime::TimeZone::INFINITY,
-14400,
0,
'AST'
],
];
sub olson_version { '2012c' }
sub has_dst_changes { 0 }
sub _max_year { 2022 }
sub _new_instance
{
return shift ->_init( @_ , spans => $spans );
}
1;
|