Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2751967 + 220cc21 commit 8a14ea4Copy full SHA for 8a14ea4
2 files changed
Lib/test/test_tcl.py
@@ -376,6 +376,7 @@ def testfunc(arg):
376
result = arg
377
return arg
378
self.interp.createcommand('testfunc', testfunc)
379
+ self.addCleanup(self.interp.tk.deletecommand, 'testfunc')
380
def check(value, expected, eq=self.assertEqual):
381
r = self.interp.call('testfunc', value)
382
self.assertIsInstance(result, str)
Misc/NEWS
@@ -17,6 +17,11 @@ Library
17
- Issue #19748: On AIX, time.mktime() now raises an OverflowError for year
18
outsize range [1902; 2037].
19
20
+Tests
21
+-----
22
+
23
+- Issue #20743: Fix a reference leak in test_tcl.
24
25
26
What's New in Python 3.4.0 release candidate 2?
27
===============================================
0 commit comments