summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-03-14 18:59:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-03-14 18:59:09 (GMT)
commit2556c8388c950cd5d41d57251c1471c7bed3bb4b (patch)
treef5a898311647b3f398f8303bb44f5a022086470d /Misc
parent69c66f9a431e32df9e713eee1021ef1954a9be60 (diff)
downloadcpython-2556c8388c950cd5d41d57251c1471c7bed3bb4b.zip
cpython-2556c8388c950cd5d41d57251c1471c7bed3bb4b.tar.gz
cpython-2556c8388c950cd5d41d57251c1471c7bed3bb4b.tar.bz2
Issue #17299: Add test coverage for cPickle with file objects and general IO
objects. Original patch by Aman Shah.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 75e31bf..593ba4d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -910,6 +910,7 @@ Jerry Seutter
Pete Sevander
Denis Severson
Ian Seyer
+Aman Shah
Ha Shao
Mark Shannon
Richard Shapiro
diff --git a/Misc/NEWS b/Misc/NEWS
index d861538..ae0402b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -816,6 +816,9 @@ Extension Modules
Tests
-----
+- Issue #17299: Add test coverage for cPickle with file objects and general IO
+ objects. Original patch by Aman Shah.
+
- Issue #11963: remove human verification from test_parser and test_subprocess.
- Issue #17249: convert a test in test_capi to use unittest and reap threads.