summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-10-18 18:18:06 (GMT)
committerFred Drake <fdrake@acm.org>2001-10-18 18:18:06 (GMT)
commit934d2a43105151d4c70f1295cce3be6f5b3690eb (patch)
treea01b1404dd3542adbde740595f8bfa54da6d9b92 /Misc
parent39c27f1ffbb426bc7aceb7258b6d20cb5d4ba392 (diff)
downloadcpython-934d2a43105151d4c70f1295cce3be6f5b3690eb.zip
cpython-934d2a43105151d4c70f1295cce3be6f5b3690eb.tar.gz
cpython-934d2a43105151d4c70f1295cce3be6f5b3690eb.tar.bz2
Add a note about changes related to the weak reference objects.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e89b789..a91b7af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,10 @@ Core and builtins
exceptions (which could mask bugs in a __getattr__ hook, for
example).
+- Weak reference objects are now part of the core and offers a C API.
+ A bug which could allow a core dump when binary operations involved
+ proxy reference has been fixed.
+
Extension modules
- thread.start_new_thread() now returns the thread ID (previously None).