summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-17 21:12:33 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-04-17 21:12:33 (GMT)
commitc7605f21ae5c5b9e695c8a2346bc21357a84c6b3 (patch)
treed4b71e7b27be31adbb9f1d059df274aaa1e645bf /Misc/NEWS
parentab1d245871466b308ef9d015702a77b8262759c4 (diff)
downloadcpython-c7605f21ae5c5b9e695c8a2346bc21357a84c6b3.zip
cpython-c7605f21ae5c5b9e695c8a2346bc21357a84c6b3.tar.gz
cpython-c7605f21ae5c5b9e695c8a2346bc21357a84c6b3.tar.bz2
local.__del__(): This didn't actually do anything, because of too
much convolution <0.5 wink>. Simplified to the point that it works, and test_threading_local no longer reports leaks under -R. Thanks to Thomas Wouters for initial analysis.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9439813..2af8616 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -72,6 +72,9 @@ Extension Modules
Library
-------
+- The ``__del__`` method of class ``local`` in module ``_threading_local``
+ returned before accomplishing any of its intended cleanup.
+
- Patch #790710: Add breakpoint command lists in pdb.
- Patch #1063914: Add Tkinter.Misc.clipboard_get().