summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-08 14:02:35 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-08 14:02:35 (GMT)
commit1ce738e08f147beb724f22a9411724a955cd418d (patch)
tree9c2b84d7b81d1117159dd791094994d96094077e /Lib/tkinter
parentcc22984d9e5e5357212db2eb1841f93e75fe75f5 (diff)
parent4c35964b764540988bfb342bffc7c4b1cb674031 (diff)
downloadcpython-1ce738e08f147beb724f22a9411724a955cd418d.zip
cpython-1ce738e08f147beb724f22a9411724a955cd418d.tar.gz
cpython-1ce738e08f147beb724f22a9411724a955cd418d.tar.bz2
Merge typo fixes from 3.5
Diffstat (limited to 'Lib/tkinter')
-rw-r--r--Lib/tkinter/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py
index 3f242ac..7fbe147 100644
--- a/Lib/tkinter/__init__.py
+++ b/Lib/tkinter/__init__.py
@@ -1248,7 +1248,7 @@ class Misc:
nsign, b, f, h, k, s, t, w, x, y, A, E, K, N, W, T, X, Y, D = args
# Missing: (a, c, d, m, o, v, B, R)
e = Event()
- # serial field: valid vor all events
+ # serial field: valid for all events
# number of button: ButtonPress and ButtonRelease events only
# height field: Configure, ConfigureRequest, Create,
# ResizeRequest, and Expose events only
@@ -1256,11 +1256,11 @@ class Misc:
# time field: "valid for events that contain a time field"
# width field: Configure, ConfigureRequest, Create, ResizeRequest,
# and Expose events only
- # x field: "valid for events that contain a x field"
+ # x field: "valid for events that contain an x field"
# y field: "valid for events that contain a y field"
# keysym as decimal: KeyPress and KeyRelease events only
# x_root, y_root fields: ButtonPress, ButtonRelease, KeyPress,
- # KeyRelease,and Motion events
+ # KeyRelease, and Motion events
e.serial = getint(nsign)
e.num = getint_event(b)
try: e.focus = getboolean(f)