[Python-checkins] cpython (2.7): Issue #18292: s/tkinter/Tkinter/

zach.ware python-checkins at python.org
Thu Jun 5 22:58:18 CEST 2014


http://hg.python.org/cpython/rev/2567c68fb300
changeset:   91047:2567c68fb300
branch:      2.7
parent:      91042:f51ecdac91c8
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Thu Jun 05 15:57:44 2014 -0500
summary:
  Issue #18292: s/tkinter/Tkinter/

files:
  Lib/idlelib/idle_test/test_autoexpand.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/idlelib/idle_test/test_autoexpand.py b/Lib/idlelib/idle_test/test_autoexpand.py
--- a/Lib/idlelib/idle_test/test_autoexpand.py
+++ b/Lib/idlelib/idle_test/test_autoexpand.py
@@ -15,7 +15,7 @@
 
     @classmethod
     def setUpClass(cls):
-        if 'tkinter' in str(Text):
+        if 'Tkinter' in str(Text):
             requires('gui')
             cls.tk = Tk()
             cls.text = Text(cls.tk)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list