diff options
Diffstat (limited to 'cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm')
-rw-r--r-- | cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm b/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm index 320186581a..e13b0ec99e 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm @@ -5,16 +5,16 @@ use strict ; use warnings; #use bytes; -use Compress::Raw::Zlib 2.061 ; -use IO::Compress::Base::Common 2.061 qw(:Status ); +use Compress::Raw::Zlib 2.062 ; +use IO::Compress::Base::Common 2.062 qw(:Status ); -use IO::Uncompress::Base 2.061 ; -use IO::Uncompress::Adapter::Inflate 2.061 ; +use IO::Uncompress::Base 2.062 ; +use IO::Uncompress::Adapter::Inflate 2.062 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError); -$VERSION = '2.061'; +$VERSION = '2.062'; $RawInflateError = ''; @ISA = qw( Exporter IO::Uncompress::Base ); @@ -827,7 +827,7 @@ Usage is $status = $z->read($buffer) -Reads a block of compressed data (the size the the compressed block is +Reads a block of compressed data (the size of the compressed block is determined by the C<Buffer> option in the constructor), uncompresses it and writes any uncompressed data into C<$buffer>. If the C<Append> parameter is set in the constructor, the uncompressed data will be appended to the @@ -865,7 +865,7 @@ Usage is Reads a single line. -This method fully supports the use of of the variable C<$/> (or +This method fully supports the use of the variable C<$/> (or C<$INPUT_RECORD_SEPARATOR> or C<$RS> when C<English> is in use) to determine what constitutes an end of line. Paragraph mode, record mode and file slurp mode are all supported. @@ -933,7 +933,7 @@ It is a fatal error to attempt to seek backward. Note that the implementation of C<seek> in this module does not provide true random access to a compressed file/buffer. It works by uncompressing data from the current offset in the file/buffer until it reaches the -ucompressed offset specified in the parameters to C<seek>. For very small +uncompressed offset specified in the parameters to C<seek>. For very small files this may be acceptable behaviour. For large files it may cause an unacceptable delay. @@ -982,7 +982,7 @@ Returns the current uncompressed line number. If C<EXPR> is present it has the effect of setting the line number. Note that setting the line number does not change the current position within the file/buffer being read. -The contents of C<$/> are used to to determine what constitutes a line +The contents of C<$/> are used to determine what constitutes a line terminator. =head2 fileno |