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

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


http://hg.python.org/cpython/rev/206f134773da
changeset:   88435:206f134773da
branch:      3.3
parent:      88432:72560f9bb2a2
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Mon Jan 13 14:23:18 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