diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-02-02 09:12:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-02-02 09:12:47 (GMT) |
commit | bee09aecc2c317fd3488b819ab88a13e0755189e (patch) | |
tree | 7a7efc93b0be362f0bace2153092feeb9b32204b /Misc | |
parent | bb19bf275b465b8a17da51b6365f9d2800921a05 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |