diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-05-29 02:22:14 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-05-29 02:22:14 (GMT) |
commit | 7b503965a0c19c1a19d244e15b74cb0964f08c3c (patch) | |
tree | 9e9b7645a508c3a6798c76ed69d02c60f0c95dd6 /Lib | |
parent | 1e170bae71bce4191fcda87a9aa2b4cbfeed0a56 (diff) | |
parent | eb4c9c77b8257c05b40467651bdc7764295926e8 (diff) | |
download | cpython-7b503965a0c19c1a19d244e15b74cb0964f08c3c.zip cpython-7b503965a0c19c1a19d244e15b74cb0964f08c3c.tar.gz cpython-7b503965a0c19c1a19d244e15b74cb0964f08c3c.tar.bz2 |
Merge with 3.3
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/idle_test/README.txt (renamed from Lib/idlelib/idle_test/@README.txt) | 0 | ||||
-rw-r--r-- | Lib/test/test_idle.py | 16 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Lib/idlelib/idle_test/@README.txt b/Lib/idlelib/idle_test/README.txt index f6797c6..f6797c6 100644 --- a/Lib/idlelib/idle_test/@README.txt +++ b/Lib/idlelib/idle_test/README.txt diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py index 1c18280..1acd676 100644 --- a/Lib/test/test_idle.py +++ b/Lib/test/test_idle.py @@ -1,13 +1,13 @@ -# Skip test if tkinter wasn't built or idlelib was deleted. +# Skip test if _tkinter or _thread wasn't built or idlelib was deleted. from test.support import import_module -import_module('tkinter') # discard return -itdir = import_module('idlelib.idle_test') +import_module('tkinter') +import_module('threading') # imported by PyShell, imports _thread +idletest = import_module('idlelib.idle_test') -# Without test_main present, regrtest.runtest_inner (line1219) -# imitates unittest.main by calling -# unittest.TestLoader().loadTestsFromModule(this_module) -# which look for load_tests and uses it if found. -load_tests = itdir.load_tests +# Without test_main present, regrtest.runtest_inner (line1219) calls +# unittest.TestLoader().loadTestsFromModule(this_module) which calls +# load_tests() if it finds it. (Unittest.main does the same.) +load_tests = idletest.load_tests if __name__ == '__main__': import unittest |