Gunzip.pm (IO-Compress-2.100) | : | Gunzip.pm (IO-Compress-2.101) | ||
---|---|---|---|---|
skipping to change at line 12 | skipping to change at line 12 | |||
package IO::Uncompress::Gunzip ; | package IO::Uncompress::Gunzip ; | |||
require 5.006 ; | require 5.006 ; | |||
# for RFC1952 | # for RFC1952 | |||
use strict ; | use strict ; | |||
use warnings; | use warnings; | |||
use bytes; | use bytes; | |||
use IO::Uncompress::RawInflate 2.100 ; | use IO::Uncompress::RawInflate 2.101 ; | |||
use Compress::Raw::Zlib 2.100 () ; | use Compress::Raw::Zlib 2.101 () ; | |||
use IO::Compress::Base::Common 2.100 qw(:Status ); | use IO::Compress::Base::Common 2.101 qw(:Status ); | |||
use IO::Compress::Gzip::Constants 2.100 ; | use IO::Compress::Gzip::Constants 2.101 ; | |||
use IO::Compress::Zlib::Extra 2.100 ; | use IO::Compress::Zlib::Extra 2.101 ; | |||
require Exporter ; | require Exporter ; | |||
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $GunzipError); | our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $GunzipError); | |||
@ISA = qw(IO::Uncompress::RawInflate Exporter); | @ISA = qw(IO::Uncompress::RawInflate Exporter); | |||
@EXPORT_OK = qw( $GunzipError gunzip ); | @EXPORT_OK = qw( $GunzipError gunzip ); | |||
%EXPORT_TAGS = %IO::Uncompress::RawInflate::DEFLATE_CONSTANTS ; | %EXPORT_TAGS = %IO::Uncompress::RawInflate::DEFLATE_CONSTANTS ; | |||
push @{ $EXPORT_TAGS{all} }, @EXPORT_OK ; | push @{ $EXPORT_TAGS{all} }, @EXPORT_OK ; | |||
Exporter::export_ok_tags('all'); | Exporter::export_ok_tags('all'); | |||
$GunzipError = ''; | $GunzipError = ''; | |||
$VERSION = '2.100'; | $VERSION = '2.101'; | |||
sub new | sub new | |||
{ | { | |||
my $class = shift ; | my $class = shift ; | |||
$GunzipError = ''; | $GunzipError = ''; | |||
my $obj = IO::Compress::Base::Common::createSelfTiedObject($class, \$GunzipE rror); | my $obj = IO::Compress::Base::Common::createSelfTiedObject($class, \$GunzipE rror); | |||
$obj->_create(undef, 0, @_); | $obj->_create(undef, 0, @_); | |||
} | } | |||
End of changes. 3 change blocks. | ||||
6 lines changed or deleted | 6 lines changed or added |