[Python-checkins] cpython (2.7): Fixed typo.

serhiy.storchaka python-checkins at python.org
Mon Jan 13 13:24:49 CET 2014


http://hg.python.org/cpython/rev/de62e7a64346
changeset:   88434:de62e7a64346
branch:      2.7
parent:      88431:1730f4a97cbb
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Mon Jan 13 14:22:45 2014 +0200
summary:
  Fixed typo.

files:
  Lib/lib-tk/test/test_ttk/test_widgets.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/lib-tk/test/test_ttk/test_widgets.py b/Lib/lib-tk/test/test_ttk/test_widgets.py
--- a/Lib/lib-tk/test/test_ttk/test_widgets.py
+++ b/Lib/lib-tk/test/test_ttk/test_widgets.py
@@ -21,7 +21,7 @@
         widget = self.create()
         self.assertEqual(widget['class'], '')
         errmsg='attempt to change read-only option'
-        if get_tk_patchlevel() < (8, 6, 0): # actually this was changen in 8.6b3
+        if get_tk_patchlevel() < (8, 6, 0): # actually this was changed in 8.6b3
             errmsg='Attempt to change read-only option'
         self.checkInvalidParam(widget, 'class', 'Foo', errmsg=errmsg)
         widget2 = self.create(class_='Foo')
@@ -577,7 +577,7 @@
         widget = self.create()
         self.assertEqual(str(widget['orient']), 'vertical')
         errmsg='attempt to change read-only option'
-        if get_tk_patchlevel() < (8, 6, 0): # actually this was changen in 8.6b3
+        if get_tk_patchlevel() < (8, 6, 0): # actually this was changed in 8.6b3
             errmsg='Attempt to change read-only option'
         self.checkInvalidParam(widget, 'orient', 'horizontal',
                 errmsg=errmsg)

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


More information about the Python-checkins mailing list