summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-27 14:08:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-05-27 14:08:01 (GMT)
commit43b068648e81d951f78d9f1cf1cd8f42731e164e (patch)
tree0273084c3e9fb5d29656265d0c59ccbccb73a99d /Misc
parentd408503b2c74b53f734adab6cd35866be460ce5e (diff)
downloadcpython-43b068648e81d951f78d9f1cf1cd8f42731e164e.zip
cpython-43b068648e81d951f78d9f1cf1cd8f42731e164e.tar.gz
cpython-43b068648e81d951f78d9f1cf1cd8f42731e164e.tar.bz2
try to use the same str object for all code filenames when compiling or unmarshalling (#12190)
This should reduce memory usage.
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 0514c96..df8bca8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #12190: Try to use the same filename object when compiling unmarshalling
+ a code objects in the same file.
+
- Issue #12166: Move implementations of dir() specialized for various types into
the __dir__() methods of those types.