diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-09-18 23:50:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-18 23:50:44 +0200 |
commit | 88c60c9668f0aa732693517a60b851cc1dfce0cb (patch) | |
tree | 60a30eb883118025b6416f566e64598dac8b8a58 /Lib/test/test_idle.py | |
parent | b43c4caf81b10e5c7ebaeb3a712c6db584f60bbd (diff) | |
download | cpython-git-88c60c9668f0aa732693517a60b851cc1dfce0cb.tar.gz |
Trivial cleanups following bpo-31370 (#3649)
* Trivial cleanups following bpo-31370
* Also cleanup the "importlib._bootstrap_external" module
Diffstat (limited to 'Lib/test/test_idle.py')
-rw-r--r-- | Lib/test/test_idle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py index b7ef70ddba..31fffd94a0 100644 --- a/Lib/test/test_idle.py +++ b/Lib/test/test_idle.py @@ -1,7 +1,7 @@ import unittest from test.support import import_module -# Skip test if _thread or _tkinter wasn't built, if idlelib is missing, +# Skip test if _tkinter wasn't built, if idlelib is missing, # or if tcl/tk is not the 8.5+ needed for ttk widgets. tk = import_module('tkinter') # imports _tkinter if tk.TkVersion < 8.5: |