summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-03 07:30:51 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-03 07:30:51 (GMT)
commit32ca3dcb97a75c05dc2b90c88bbf82a541c57c61 (patch)
tree60e9b695fbc4017a34f2202beef337eb01c347db /Misc
parent7a27c97216ef1a71bc26a559d7331523875a0c6f (diff)
parentc057c3859c68f2e86c7a492ae8f8b4b3a3b136c8 (diff)
downloadcpython-32ca3dcb97a75c05dc2b90c88bbf82a541c57c61.zip
cpython-32ca3dcb97a75c05dc2b90c88bbf82a541c57c61.tar.gz
cpython-32ca3dcb97a75c05dc2b90c88bbf82a541c57c61.tar.bz2
Issue #23099: Closing io.BytesIO with exported buffer is rejected now to
prevent corrupting exported buffer.
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 62e5794..7a3a5ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -232,6 +232,9 @@ Core and Builtins
Library
-------
+- Issue #23099: Closing io.BytesIO with exported buffer is rejected now to
+ prevent corrupting exported buffer.
+
- Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
implementation in issue #21408 they are redundant.