This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients pitrou, serhiy.storchaka
Date 2014-02-23.18:13:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393179184.78.0.0735948976922.issue20743@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, this looks mostly like a cleanup issue in the tests. Following patch seems to solve it:

diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py
--- 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)
History
Date User Action Args
2014-02-23 18:13:04pitrousetrecipients: + pitrou, serhiy.storchaka
2014-02-23 18:13:04pitrousetmessageid: <1393179184.78.0.0735948976922.issue20743@psf.upfronthosting.co.za>
2014-02-23 18:13:04pitroulinkissue20743 messages
2014-02-23 18:13:04pitroucreate