summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuilherme Polo <ggpolo@gmail.com>2009-02-06 23:16:11 (GMT)
committerGuilherme Polo <ggpolo@gmail.com>2009-02-06 23:16:11 (GMT)
commit491aee20c0282fe7e456796f31328a21b02abba3 (patch)
treea6b71b31885a7ed8cded04b9ff742bb8d16df9e9 /Misc
parentb41bc91549fdcdb2d206271edd0cccabe56664f8 (diff)
downloadcpython-491aee20c0282fe7e456796f31328a21b02abba3.zip
cpython-491aee20c0282fe7e456796f31328a21b02abba3.tar.gz
cpython-491aee20c0282fe7e456796f31328a21b02abba3.tar.bz2
Merged revisions 69376-69377 via svnmerge from
svn+ssh://pythondev/python/trunk ........ r69376 | guilherme.polo | 2009-02-06 20:26:22 -0200 (Fri, 06 Feb 2009) | 3 lines Partial fix to issue #1731706: memory leak in Tkapp_Call when calling from a thread different than the one that created the Tcl interpreter. ........ r69377 | guilherme.polo | 2009-02-06 20:48:07 -0200 (Fri, 06 Feb 2009) | 5 lines Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will not be used again (this requires Tcl/Tk 8.3.1), also fix a memory leak in Tkapp_Call when calling from a thread different than the one that created the Tcl interpreter. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cd60fa3..d328c61 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -155,6 +155,11 @@ Core and Builtins
Library
-------
+- Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will
+ not be used again (this requires Tcl/Tk 8.3.1), also fix a memory leak in
+ Tkapp_Call when calling from a thread different than the one that created
+ the Tcl interpreter. Patch by Robert Hancock.
+
- Issue #4285: Change sys.version_info to be a named tuple. Patch by
Ross Light.