[Python-checkins] cpython (merge 3.3 -> default): Fixed typo.

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


http://hg.python.org/cpython/rev/a707f3cc0e8e
changeset:   88436:a707f3cc0e8e
parent:      88433:bdf6c0135d39
parent:      88435:206f134773da
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Mon Jan 13 14:24:11 2014 +0200
summary:
  Fixed typo.

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


diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py
--- a/Lib/tkinter/test/test_ttk/test_widgets.py
+++ b/Lib/tkinter/test/test_ttk/test_widgets.py
@@ -576,7 +576,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