summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-02-02 09:12:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-02-02 09:12:47 (GMT)
commitbee09aecc2c317fd3488b819ab88a13e0755189e (patch)
tree7a7efc93b0be362f0bace2153092feeb9b32204b /Misc
parentbb19bf275b465b8a17da51b6365f9d2800921a05 (diff)
downloadcpython-bee09aecc2c317fd3488b819ab88a13e0755189e.zip
cpython-bee09aecc2c317fd3488b819ab88a13e0755189e.tar.gz
cpython-bee09aecc2c317fd3488b819ab88a13e0755189e.tar.bz2
Issue #29368: The extend() method is now called instead of the append()
method when unpickle collections.deque and other list-like objects. This can speed up unpickling to 2 times.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 21685d3..a4adbda 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -230,6 +230,10 @@ Library
- Issue #29218: Unused install_misc command is now removed. It has been
documented as unused since 2000. Patch by Eric N. Vander Weele.
+- Issue #29368: The extend() method is now called instead of the append()
+ method when unpickle collections.deque and other list-like objects.
+ This can speed up unpickling to 2 times.
+
- Issue #29338: The help of a builtin or extension class now includes the
constructor signature if __text_signature__ is provided for the class.