summaryrefslogtreecommitdiff
path: root/Lib/test/test_zlib.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tailNadeem Vawda2011-05-141-0/+9
* Issue #11277: Remove useless test from test_zlib.Nadeem Vawda2011-05-071-42/+0
* Issue #11277: oops, fix checksum values of test_zlib on 32 bitsVictor Stinner2011-05-041-2/+6
* Issue #11277: test_zlib tests a buffer of 1 GB on 32 bitsVictor Stinner2011-05-041-6/+15
* Issue #11277: fix issue number in a test_zlib commentVictor Stinner2011-05-041-1/+1
* Issue #10276: Fix test_zlib, m may be undefined in the finally blockVictor Stinner2011-05-031-1/+1
* Issue #10276: test_zlib checks that inputs of 2 GB are handled correctly byVictor Stinner2011-05-031-3/+38
* Issue #8681: Make the zlib module's error messages more informative whenAntoine Pitrou2010-05-111-0/+7
* Issue #8672: Add a zlib test ensuring that an incomplete stream can beAntoine Pitrou2010-05-111-0/+13
* Issue #8571: Fix an internal error when compressing or decompressing aAntoine Pitrou2010-05-071-3/+59
* Issue #8193: Fix test_zlib failure with zlib 1.2.4.Antoine Pitrou2010-04-061-1/+1
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-6/+6
* Change more tests to use import_module for the modules thatR. David Murray2009-03-301-1/+2
* Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive.Gregory P. Smith2008-04-091-0/+5
* A stab in the dark attempt to fix the alpha/tru64 buildbot problem and add moreGregory P. Smith2008-03-251-0/+9
* Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.Gregory P. Smith2008-03-181-0/+6
* Force zlib.crc32 and zlib.adler32 to return a signed integer on all platformsGregory P. Smith2008-03-171-0/+9
* test_bigbits was not testing what it seemed to.Armin Rigo2007-10-151-4/+8
* Remove code that hasn't been called in years.Collin Winter2007-04-241-34/+0
* Patch #1503046, Conditional compilation of zlib.(de)compressobj.copyNeal Norwitz2006-06-121-57/+59
* Patch #1435422: zlib's compress and decompress objects now have aGeorg Brandl2006-05-161-0/+57
* [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bu...Andrew M. Kuchling2005-11-221-0/+2
* Whitespace normalization.Tim Peters2005-01-071-1/+1
* [Bug #1083110] calling .flush() on decompress objects causes a segfault due t...Andrew M. Kuchling2004-12-281-0/+10
* Remove a number of tests that differ only in input data size. It seemsNeil Schemenauer2004-06-051-161/+59
* Remove lots of magic constants.Neil Schemenauer2004-06-051-23/+38
* SF bug #785222: zlib monotonic testRaymond Hettinger2003-08-311-11/+0
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-12/+12
* Use floor division (//).Guido van Rossum2003-02-271-3/+3
* Whitespace normalization.Tim Peters2003-02-191-2/+1
* - Thanks to Scott David Daniels, a subtle bug in how the zlibGuido van Rossum2003-02-031-163/+444
* Portable way of producing unsigned 32-bit hex output to print theGuido van Rossum2002-08-121-2/+4
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Fix SF #544995 (zlib crash on second flush call)Jeremy Hylton2002-04-191-0/+6
* Whitespace normalization.Tim Peters2001-10-181-1/+1
* [ #403753 ] zlib decompress; uncontrollable memory usageJeremy Hylton2001-10-161-0/+30
* Patch #441091 from Finn Bock: the more advanced flush options are notAndrew M. Kuchling2001-08-101-15/+20
* Whitespace normalization.Tim Peters2001-02-211-2/+2
* Add test case from bug #124981: zlib decompress of sync-flushed dataAndrew M. Kuchling2001-02-211-0/+26
* Patch #103748 from Toby Dickenson: fix typo in test_zlib that turns oneAndrew M. Kuchling2001-02-141-1/+1
* String method conversion.Eric S. Raymond2001-02-091-3/+2
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-8/+7
* typos fixed by Rob HooftJeremy Hylton2000-06-281-1/+1
* Make this pass the -tt test.Fred Drake2000-02-101-8/+8
* Added simple test for the flush() method of compression objects, trying theAndrew M. Kuchling1999-03-221-0/+13
* Use hex() when outputting the various checksums so the test output is theGuido van Rossum1998-04-241-3/+3
* Make this test succeed even when using "import test.test_zlib".Guido van Rossum1997-12-181-2/+5
* Many more tests, including tests of many optional arguments.Jeremy Hylton1997-09-041-0/+47
* Use imp.find_module() as the most certain way to find the test data.Guido van Rossum1997-08-151-1/+5
* test the zlib moduleJeremy Hylton1997-08-151-0/+94