1. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 15 years ago
  2. 77b338b Issue #4757: `zlib.compress` and other methods in the zlib module now by Antoine Pitrou · 15 years ago
  3. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  4. a21e4ca Merged revisions 70734,70775,70856,70874,70876-70877 via svnmerge by R. David Murray · 15 years ago
  5. 15b16a3 Issue #4387: binascii now refuses to accept str as binary input. by Martin v. Löwis · 16 years ago
  6. 693fc46 Fixes release blocker issue #3492 and #3790. by Gregory P. Smith · 16 years ago
  7. e43d33a #3247 Get rid of Py_FindMethod; use tp_members instead. by Amaury Forgeot d'Arc · 16 years ago
  8. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  9. 5e69685 Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from by Christian Heimes · 16 years ago
  10. 2727503 crc32 always returns unsigned. cleanup the code a bit and revert r61648 with by Gregory P. Smith · 16 years ago
  11. 453e08c Create a signed CRC32 hash. I'm not absolutely sure it's correct. At least it fixes the unit tests and doesn't create a different hash than Python 2.x by Christian Heimes · 16 years ago
  12. d5e2b6f Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,61580-61582,61586,61591,61593,61595,61605-61606,61613-61616,61618,61621-61623,61625,61627,61631-61634 via svnmerge from by Christian Heimes · 16 years ago
  13. b186d00 Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from by Christian Heimes · 16 years ago
  14. ab0d8a1 zlib.crc32 and zlib.adler32 now return an unsigned value as any sane person by Gregory P. Smith · 16 years ago
  15. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  16. 776152b zlib now uses bytes everywhere, and the test passes. by Guido van Rossum · 17 years ago
  17. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  18. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  19. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  20. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  21. bb7e800 [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo. by Andrew M. Kuchling · 19 years ago
  22. 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
  23. 3b585b3 [Bug #1083110] calling .flush() on decompress objects causes a segfault due to an uninitialized pointer: fixes the problem and adds a test case by Andrew M. Kuchling · 20 years ago
  24. 6412b12 Remove a number of tests that differ only in input data size. It seems by Neil Schemenauer · 20 years ago
  25. 94afd3e Remove lots of magic constants. by Neil Schemenauer · 20 years ago
  26. 6d362b2 SF bug #785222: zlib monotonic test by Raymond Hettinger · 21 years ago
  27. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  28. f359410 Use floor division (//). by Guido van Rossum · 22 years ago
  29. f2715e0 Whitespace normalization. by Tim Peters · 22 years ago
  30. 7d9ea50 - Thanks to Scott David Daniels, a subtle bug in how the zlib by Guido van Rossum · 22 years ago
  31. a6fa0e6 Portable way of producing unsigned 32-bit hex output to print the CRCs. by Guido van Rossum · 22 years ago
  32. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  33. c72737e Fix SF #544995 (zlib crash on second flush call) Bug fix by mhammond. by Jeremy Hylton · 22 years ago
  34. e0c446b Whitespace normalization. by Tim Peters · 23 years ago
  35. 511e2ca [ #403753 ] zlib decompress; uncontrollable memory usage by Jeremy Hylton · 23 years ago
  36. fcfc8d5 Patch #441091 from Finn Bock: the more advanced flush options are not by Andrew M. Kuchling · 23 years ago
  37. 0009c4e Whitespace normalization. by Tim Peters · 24 years ago
  38. 9a0f98e Add test case from bug #124981: zlib decompress of sync-flushed data fails by Andrew M. Kuchling · 24 years ago
  39. 8e6d44e Patch #103748 from Toby Dickenson: fix typo in test_zlib that turns one by Andrew M. Kuchling · 24 years ago
  40. 83ff749 String method conversion. by Eric S. Raymond · 24 years ago
  41. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  42. a05e293 typos fixed by Rob Hooft by Jeremy Hylton · 24 years ago
  43. ad892dc Make this pass the -tt test. by Fred Drake · 25 years ago
  44. dca7e00 Added simple test for the flush() method of compression objects, trying the by Andrew M. Kuchling · 25 years ago
  45. 446898f Use hex() when outputting the various checksums so the test output is the by Guido van Rossum · 26 years ago
  46. 629bcfb Make this test succeed even when using "import test.test_zlib". by Guido van Rossum · 27 years ago
  47. 9dc2b8e Many more tests, including tests of many optional arguments. by Jeremy Hylton · 27 years ago
  48. c95a6c1 Use imp.find_module() as the most certain way to find the test data. by Guido van Rossum · 27 years ago
  49. 6eb4b6a test the zlib module only produce output if somethign goes wrong by Jeremy Hylton · 27 years ago