summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2010-03-18 22:46:40 (GMT)
committerCollin Winter <collinw@gmail.com>2010-03-18 22:46:40 (GMT)
commit4222e9c07cc9a223ac756f8cc1c1cd2f9212765e (patch)
treed9d477df9e477ed208bee9b3748f7ad1492e8f86 /Misc
parentb3a482962d12871db122dbc843476eea054b2782 (diff)
downloadcpython-4222e9c07cc9a223ac756f8cc1c1cd2f9212765e.zip
cpython-4222e9c07cc9a223ac756f8cc1c1cd2f9212765e.tar.gz
cpython-4222e9c07cc9a223ac756f8cc1c1cd2f9212765e.tar.bz2
Merged revisions 79060 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79060 | collin.winter | 2010-03-18 14:54:01 -0700 (Thu, 18 Mar 2010) | 4 lines Add support for weak references to code objects. This will be used by an optimization in the incoming Python 3 JIT. Patch by Reid Kleckner! ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5484d39..5f6920a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -233,6 +233,8 @@ Core and Builtins
instances from being copied with copy.copy(), and bytes subclasses
from being pickled properly.
+- Code objects now support weak references.
+
C-API
-----