Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3b4c989c
Commit
3b4c989c
authored
Apr 06, 2010
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #8193: Fix test_zlib failure with zlib 1.2.4.
parent
8279167a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/test/test_zlib.py
Lib/test/test_zlib.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_zlib.py
View file @
3b4c989c
...
...
@@ -82,7 +82,7 @@ class ExceptionTestCase(unittest.TestCase):
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
...
...
Misc/NEWS
View file @
3b4c989c
...
...
@@ -251,6 +251,8 @@ C-API
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment