Commit 78ecaba4 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Print Tk patchlevel in test_tcl in verbose mode (issue19654).

parent eccf9c2e
......@@ -282,6 +282,12 @@ class BigmemTclTest(unittest.TestCase):
self.assertRaises(OverflowError, self.interp.call, 'set', '_', value)
def setUpModule():
if test_support.verbose:
tcl = Tcl()
print 'patchlevel =', tcl.call('info', 'patchlevel')
def test_main():
test_support.run_unittest(TclTest, TkinterTest, BigmemTclTest)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment