Kaydet (Commit) f2dec8d6 authored tarafından Hirokazu Yamamoto's avatar Hirokazu Yamamoto

In Python3000, Tkinter was renamed to tkinter. And print is now function.

üst 35aa0837
......@@ -145,9 +145,9 @@ class TclTest(unittest.TestCase):
with support.EnvironmentVarGuard() as env:
env.unset("TCL_LIBRARY")
f = os.popen('%s -c "import Tkinter; print Tkinter"' % (unc_name,))
f = os.popen('%s -c "import tkinter; print(tkinter)"' % (unc_name,))
self.assert_('Tkinter.py' in f.read())
self.assertIn('tkinter', f.read())
# exit code must be zero
self.assertEqual(f.close(), None)
......
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