mirror of
https://github.com/python/cpython.git
synced 2026-01-03 05:54:03 +00:00
Merged revisions 79848 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79848 | antoine.pitrou | 2010-04-06 19:21:09 +0200 (mar., 06 avril 2010) | 3 lines Issue #8193: Fix test_zlib failure with zlib 1.2.4. ........
This commit is contained in:
parent
3318d29d22
commit
90ee4dfef4
2 changed files with 3 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ def test_badcompressobj(self):
|
|||
|
||||
def test_baddecompressobj(self):
|
||||
# verify failure on building decompress object with bad params
|
||||
self.assertRaises(ValueError, zlib.decompressobj, 0)
|
||||
self.assertRaises(ValueError, zlib.decompressobj, -1)
|
||||
|
||||
def test_decompressobj_badflush(self):
|
||||
# verify failure on calling decompressobj.flush with bad params
|
||||
|
|
|
|||
|
|
@ -1015,6 +1015,8 @@ Documentation
|
|||
Tests
|
||||
-----
|
||||
|
||||
- Issue #8193: Fix test_zlib failure with zlib 1.2.4.
|
||||
|
||||
- Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi.
|
||||
|
||||
- Issue #8263: Now regrtest.py will report a failure if it receives a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue