summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-17 17:57:38 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-17 17:57:38 (GMT)
commitc3afba104aef5032e114b4f5cac0a3bbdfef2bba (patch)
treee4a174e067a9af550dba2b851b647a2f354ce54c /Misc
parent25bbe5e0bce2d8b6c96a5e632bdb9007a0bf0954 (diff)
downloadcpython-c3afba104aef5032e114b4f5cac0a3bbdfef2bba.zip
cpython-c3afba104aef5032e114b4f5cac0a3bbdfef2bba.tar.gz
cpython-c3afba104aef5032e114b4f5cac0a3bbdfef2bba.tar.bz2
Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak references to bound methods.
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 a544b8b..aa9f6c7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -127,6 +127,9 @@ Core and Builtins
Library
-------
+- Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak
+ references to bound methods.
+
- Issue #16469: Fix exceptions from float -> Fraction and Decimal -> Fraction
conversions for special values to be consistent with those for float -> int
and Decimal -> int. Patch by Alexey Kachayev.