index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_zlib.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces...
Nadeem Vawda
2012-11-11
1
-0/+12
*
Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco...
Nadeem Vawda
2012-11-11
1
-9/+21
*
Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal...
Nadeem Vawda
2012-11-04
1
-0/+13
*
Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail
Nadeem Vawda
2011-05-14
1
-0/+9
*
Issue #11277: Remove useless test from test_zlib.
Nadeem Vawda
2011-05-07
1
-42/+0
*
Issue #11277: oops, fix checksum values of test_zlib on 32 bits
Victor Stinner
2011-05-04
1
-2/+6
*
Issue #11277: test_zlib tests a buffer of 1 GB on 32 bits
Victor Stinner
2011-05-04
1
-6/+15
*
Issue #11277: fix issue number in a test_zlib comment
Victor Stinner
2011-05-04
1
-1/+1
*
Issue #10276: Fix test_zlib, m may be undefined in the finally block
Victor Stinner
2011-05-03
1
-1/+1
*
Issue #10276: test_zlib checks that inputs of 2 GB are handled correctly by
Victor Stinner
2011-05-03
1
-3/+38
*
Issue #8681: Make the zlib module's error messages more informative when
Antoine Pitrou
2010-05-11
1
-0/+7
*
Issue #8672: Add a zlib test ensuring that an incomplete stream can be
Antoine Pitrou
2010-05-11
1
-0/+13
*
Issue #8571: Fix an internal error when compressing or decompressing a
Antoine Pitrou
2010-05-07
1
-3/+59
*
Issue #8193: Fix test_zlib failure with zlib 1.2.4.
Antoine Pitrou
2010-04-06
1
-1/+1
*
convert usage of fail* to assert*
Benjamin Peterson
2009-06-30
1
-6/+6
*
Change more tests to use import_module for the modules that
R. David Murray
2009-03-30
1
-1/+2
*
Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive.
Gregory P. Smith
2008-04-09
1
-0/+5
*
A stab in the dark attempt to fix the alpha/tru64 buildbot problem and add more
Gregory P. Smith
2008-03-25
1
-0/+9
*
Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.
Gregory P. Smith
2008-03-18
1
-0/+6
*
Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms
Gregory P. Smith
2008-03-17
1
-0/+9
*
test_bigbits was not testing what it seemed to.
Armin Rigo
2007-10-15
1
-4/+8
*
Remove code that hasn't been called in years.
Collin Winter
2007-04-24
1
-34/+0
*
Patch #1503046, Conditional compilation of zlib.(de)compressobj.copy
Neal Norwitz
2006-06-12
1
-57/+59
*
Patch #1435422: zlib's compress and decompress objects now have a
Georg Brandl
2006-05-16
1
-0/+57
*
[Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bu...
Andrew M. Kuchling
2005-11-22
1
-0/+2
*
Whitespace normalization.
Tim Peters
2005-01-07
1
-1/+1
*
[Bug #1083110] calling .flush() on decompress objects causes a segfault due t...
Andrew M. Kuchling
2004-12-28
1
-0/+10
*
Remove a number of tests that differ only in input data size. It seems
Neil Schemenauer
2004-06-05
1
-161/+59
*
Remove lots of magic constants.
Neil Schemenauer
2004-06-05
1
-23/+38
*
SF bug #785222: zlib monotonic test
Raymond Hettinger
2003-08-31
1
-11/+0
*
Combine the functionality of test_support.run_unittest()
Walter Dörwald
2003-05-01
1
-12/+12
*
Use floor division (//).
Guido van Rossum
2003-02-27
1
-3/+3
*
Whitespace normalization.
Tim Peters
2003-02-19
1
-2/+1
*
- Thanks to Scott David Daniels, a subtle bug in how the zlib
Guido van Rossum
2003-02-03
1
-163/+444
*
Portable way of producing unsigned 32-bit hex output to print the
Guido van Rossum
2002-08-12
1
-2/+4
*
Get rid of relative imports in all unittests. Now anything that
Barry Warsaw
2002-07-23
1
-1/+1
*
Fix SF #544995 (zlib crash on second flush call)
Jeremy Hylton
2002-04-19
1
-0/+6
*
Whitespace normalization.
Tim Peters
2001-10-18
1
-1/+1
*
[ #403753 ] zlib decompress; uncontrollable memory usage
Jeremy Hylton
2001-10-16
1
-0/+30
*
Patch #441091 from Finn Bock: the more advanced flush options are not
Andrew M. Kuchling
2001-08-10
1
-15/+20
*
Whitespace normalization.
Tim Peters
2001-02-21
1
-2/+2
*
Add test case from bug #124981: zlib decompress of sync-flushed data
Andrew M. Kuchling
2001-02-21
1
-0/+26
*
Patch #103748 from Toby Dickenson: fix typo in test_zlib that turns one
Andrew M. Kuchling
2001-02-14
1
-1/+1
*
String method conversion.
Eric S. Raymond
2001-02-09
1
-3/+2
*
Make reindent.py happy (convert everything to 4-space indents!).
Fred Drake
2000-10-23
1
-8/+7
*
typos fixed by Rob Hooft
Jeremy Hylton
2000-06-28
1
-1/+1
*
Make this pass the -tt test.
Fred Drake
2000-02-10
1
-8/+8
*
Added simple test for the flush() method of compression objects, trying the
Andrew M. Kuchling
1999-03-22
1
-0/+13
*
Use hex() when outputting the various checksums so the test output is the
Guido van Rossum
1998-04-24
1
-3/+3
*
Make this test succeed even when using "import test.test_zlib".
Guido van Rossum
1997-12-18
1
-2/+5
[next]