]> granicus.if.org Git - python/commitdiff
Issue #15392: Do not run tests if threading/_thread not available. Otherwise
authorTerry Jan Reedy <tjreedy@udel.edu>
Wed, 29 May 2013 02:21:53 +0000 (22:21 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Wed, 29 May 2013 02:21:53 +0000 (22:21 -0400)
touchup test_idle. Rename README.txt.

Lib/idlelib/idle_test/README.txt [moved from Lib/idlelib/idle_test/@README.txt with 100% similarity]
Lib/test/test_idle.py

index 1c18280fe456cac8f013ebf64f17ea2932dc5b6a..1acd67684ceeb20a00bcc90e460d4262ceca01e8 100644 (file)
@@ -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