diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-28 04:01:00 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-07-28 04:01:00 (GMT) |
commit | 16b10c64d719fed995ecfe01a1f18e4e184d0659 (patch) | |
tree | ebb6bcd628ce77e139535ac29eba7b921ee6cee4 | |
parent | d826d77d11d8d0b5c002de69b7c86bb043b4864c (diff) | |
download | cpython-16b10c64d719fed995ecfe01a1f18e4e184d0659.zip cpython-16b10c64d719fed995ecfe01a1f18e4e184d0659.tar.gz cpython-16b10c64d719fed995ecfe01a1f18e4e184d0659.tar.bz2 |
Issue #18441: Move commented out code to issue message.
-rw-r--r-- | Lib/test/test_idle.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py index b94672c..8552e6f 100644 --- a/Lib/test/test_idle.py +++ b/Lib/test/test_idle.py @@ -9,17 +9,9 @@ idletest = import_module('idlelib.idle_test') # If buildbot improperly sets gui resource (#18365, #18441), remove it # so requires('gui') tests are skipped while non-gui tests still run. +# If there is a problem with Macs, see #18441, msg 193805 if use_resources and 'gui' in use_resources: try: - import sys -## 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: |