summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2011-01-26 21:21:32 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2011-01-26 21:21:32 (GMT)
commit7372a07fd0eb8e32fe9d03ee5a56ecc14788dfb0 (patch)
tree73992b4a0b679dcc803f4136056c60980fe3dd91 /Misc
parenta63a312a3f5a4f3b76617831e56ac9d295929fa0 (diff)
downloadcpython-7372a07fd0eb8e32fe9d03ee5a56ecc14788dfb0.zip
cpython-7372a07fd0eb8e32fe9d03ee5a56ecc14788dfb0.tar.gz
cpython-7372a07fd0eb8e32fe9d03ee5a56ecc14788dfb0.tar.bz2
#11019: Make BytesGenerator handle Message with None body.
Bug discovery and initial patch by Victor Stinner.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f2e37b5..28803f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #11019: Fixed BytesGenerator so that it correctly handles a Message
+ with a None body.
+
- Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a
keyword-only argument. The preceding positional argument was deprecated,
so it made no sense to add filter as a positional argument.