From: Terry Jan Reedy Date: Sun, 28 Jul 2013 02:27:25 +0000 (-0400) Subject: Issue #18441: Comment out code that will not compile because the standard X-Git-Tag: v2.7.6rc1~274 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47cb4d62c6456c92342db684cf78ed54e107d29b;p=thirdparty%2FPython%2Fcpython.git Issue #18441: Comment out code that will not compile because the standard library has a package, lib-tk, that cannot be imported by normal means. Lib/test/test_tk, etc, have special code to access this package. I will not bother with it unless the darwin check is needed before it gets moved to test.(test-)support.py. --- diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py index 77f6b1de5198..177e3eb97395 100644 --- a/Lib/test/test_idle.py +++ b/Lib/test/test_idle.py @@ -12,13 +12,14 @@ idletest = import_module('idlelib.idle_test') if use_resources and 'gui' in use_resources: try: import sys - if sys.platform == 'darwin': - from lib-tk.test.runtktests import check_tk_availability - # tkinter.test.suppport in 3.x - try: - check_tk_availability() - except unittest.SkipTest: - raise tk.TclError +## if sys.platform == 'darwin': +## from lib-tk.test.runtktests import check_tk_availability +# see test/test_tk.py or test_ttk_guionly for how to import the above +## # tkinter.test.suppport in 3.x +## try: +## check_tk_availability() +## except unittest.SkipTest: +## raise tk.TclError root = tk.Tk() root.destroy() except tk.TclError: