summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-02-06 03:01:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-02-06 03:01:24 (GMT)
commit063ff65e2c305a8f24100475cc4f9ad2bcc342be (patch)
treed2bf4831013b53844a40cb8ca865a1be90243edd /Lib/tkinter
parent7f9876c0daf73b1da3a7bc3ab62add0d1b10706a (diff)
downloadcpython-063ff65e2c305a8f24100475cc4f9ad2bcc342be.zip
cpython-063ff65e2c305a8f24100475cc4f9ad2bcc342be.tar.gz
cpython-063ff65e2c305a8f24100475cc4f9ad2bcc342be.tar.bz2
Merged revisions 69141,69211-69212 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69141 | benjamin.peterson | 2009-01-31 14:01:48 -0600 (Sat, 31 Jan 2009) | 1 line fix indentation ........ r69211 | guilherme.polo | 2009-02-02 14:23:29 -0600 (Mon, 02 Feb 2009) | 1 line Restore the previous geometry before leaving the test ........ r69212 | guilherme.polo | 2009-02-02 14:28:59 -0600 (Mon, 02 Feb 2009) | 1 line Moving to importlib ........
Diffstat (limited to 'Lib/tkinter')
-rw-r--r--Lib/tkinter/test/runtktests.py10
-rw-r--r--Lib/tkinter/test/test_ttk/test_extensions.py5
2 files changed, 6 insertions, 9 deletions
diff --git a/Lib/tkinter/test/runtktests.py b/Lib/tkinter/test/runtktests.py
index 7067594..3d9775b 100644
--- a/Lib/tkinter/test/runtktests.py
+++ b/Lib/tkinter/test/runtktests.py
@@ -9,6 +9,7 @@ Extensions also should live in packages following the same rule as above.
import os
import sys
import unittest
+import importlib
import test.support
this_dir_path = os.path.abspath(os.path.dirname(__file__))
@@ -44,13 +45,8 @@ def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
for name in filenames:
try:
- yield __import__(
- "%s.%s.%s" % (
- "tkinter.test",
- pkg_name,
- name[:-len(py_ext)]),
- fromlist=['']
- )
+ yield importlib.import_module(
+ ".%s" % name[:-len(py_ext)], pkg_name)
except test.support.ResourceDenied:
if gui:
raise
diff --git a/Lib/tkinter/test/test_ttk/test_extensions.py b/Lib/tkinter/test/test_ttk/test_extensions.py
index a14ccca..9e52fc6 100644
--- a/Lib/tkinter/test/test_ttk/test_extensions.py
+++ b/Lib/tkinter/test/test_ttk/test_extensions.py
@@ -167,14 +167,15 @@ class LabeledScaleTest(unittest.TestCase):
x.update()
width, height = x.master.winfo_width(), x.master.winfo_height()
- width, height = width * 2, height * 2
+ width_new, height_new = width * 2, height * 2
x.value = 3
x.update()
- x.master.wm_geometry("%dx%d" % (width, height))
+ x.master.wm_geometry("%dx%d" % (width_new, height_new))
self.failUnlessEqual(int(x.label.place_info()['x']),
x.scale.coords()[0])
+ # Reset geometry
x.master.wm_geometry("%dx%d" % (width, height))
x.destroy()