From 47cb4d62c6456c92342db684cf78ed54e107d29b Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sat, 27 Jul 2013 22:27:25 -0400 Subject: 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. --- Lib/test/test_idle.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py index 77f6b1d..177e3eb 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: -- cgit v0.12