summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-09 21:53:02 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-09 21:53:02 (GMT)
commit7c19affdceb6796322fb5046e3b231ddd8baa404 (patch)
tree305cf99dd804ce6cff1dbf4cd8954b65c25635d6 /Misc
parentae8b69c410b83d92c6c35bbe342c3c2e92be6aa1 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1943256..c47c4bf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.