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 77f6b1d..177e3eb 100644
--- a/Lib/test/test_idle.py
+++ b/Lib/test/test_idle.py
@@ -12,13 +12,14 @@
 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: