diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-02-23 18:41:51 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-02-23 18:41:51 (GMT) |
commit | 8a14ea46940b3000f8a56d246ae5c220845b759a (patch) | |
tree | 12314928d6d4c6f7d18737053b84ab9a4edbbc0b /Lib | |
parent | 27519673d3ca0d265d719233e6a43f1afa3fe2fc (diff) | |
parent | 220cc21cec3716ca94d63fea51d30ae84274d8cc (diff) | |
download | cpython-8a14ea46940b3000f8a56d246ae5c220845b759a.zip cpython-8a14ea46940b3000f8a56d246ae5c220845b759a.tar.gz cpython-8a14ea46940b3000f8a56d246ae5c220845b759a.tar.bz2 |
Issue #20743: Fix a reference leak in test_tcl.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_tcl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py index c0c6341..d12fb22 100644 --- a/Lib/test/test_tcl.py +++ b/Lib/test/test_tcl.py @@ -376,6 +376,7 @@ class TclTest(unittest.TestCase): result = arg return arg self.interp.createcommand('testfunc', testfunc) + self.addCleanup(self.interp.tk.deletecommand, 'testfunc') def check(value, expected, eq=self.assertEqual): r = self.interp.call('testfunc', value) self.assertIsInstance(result, str) |