summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-06 06:55:21 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-06 06:55:21 (GMT)
commita0d416f0d186b5ee6ea6a898418871157a55b4f6 (patch)
tree026f19318df96522ce2dcca993f74e3dfa5a2538 /Misc
parent841b930a41be90c6c05fb4bab8392f50e01d86b7 (diff)
downloadcpython-a0d416f0d186b5ee6ea6a898418871157a55b4f6.zip
cpython-a0d416f0d186b5ee6ea6a898418871157a55b4f6.tar.gz
cpython-a0d416f0d186b5ee6ea6a898418871157a55b4f6.tar.bz2
Issue #26482: Allowed pickling recursive dequeues.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3eee944..4ce8bf6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -201,6 +201,8 @@ Core and Builtins
Library
-------
+- Issue #26482: Allowed pickling recursive dequeues.
+
- Issue #26335: Make mmap.write() return the number of bytes written like
other write methods. Patch by Jakub Stasiak.