mirror of
https://github.com/python/cpython.git
synced 2025-12-10 02:50:09 +00:00
Issue #20743: Fix a reference leak in test_tcl.
This commit is contained in:
commit
8a14ea4694
2 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -17,6 +17,11 @@ Library
|
|||
- Issue #19748: On AIX, time.mktime() now raises an OverflowError for year
|
||||
outsize range [1902; 2037].
|
||||
|
||||
Tests
|
||||
-----
|
||||
|
||||
- Issue #20743: Fix a reference leak in test_tcl.
|
||||
|
||||
|
||||
What's New in Python 3.4.0 release candidate 2?
|
||||
===============================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue