diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-09 21:53:02 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-09-09 21:53:02 (GMT) |
commit | 7c19affdceb6796322fb5046e3b231ddd8baa404 (patch) | |
tree | 305cf99dd804ce6cff1dbf4cd8954b65c25635d6 /Misc | |
parent | ae8b69c410b83d92c6c35bbe342c3c2e92be6aa1 (diff) | |
download | cpython-7c19affdceb6796322fb5046e3b231ddd8baa404.zip cpython-7c19affdceb6796322fb5046e3b231ddd8baa404.tar.gz cpython-7c19affdceb6796322fb5046e3b231ddd8baa404.tar.bz2 |
Issue #25856: The __module__ attribute of extension classes and functions
now is interned. This leads to more compact pickle data with protocol 4.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 1 Core and Builtins ----------------- +- Issue #25856: The __module__ attribute of extension classes and functions + now is interned. This leads to more compact pickle data with protocol 4. + - Issue #27213: Rework CALL_FUNCTION* opcodes to produce shorter and more efficient bytecode. Patch by Demur Rumed, design by Serhiy Storchaka, reviewed by Serhiy Storchaka and Victor Stinner. |