diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 13:48:10 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 13:48:10 (GMT) |
commit | f0564164bab43f078c9f84f334d72ddb0e69110c (patch) | |
tree | c932a0e51179ab15c414b95f280815f0901ac71a /Lib/tkinter | |
parent | 129fe04d4deec15f9ca0ee79776e0c4335fc12e7 (diff) | |
download | cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.zip cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.tar.gz cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.tar.bz2 |
Fix typos in comments, documentation and test method names
Diffstat (limited to 'Lib/tkinter')
-rw-r--r-- | Lib/tkinter/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index be6ed75..82ac712 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -1249,7 +1249,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 @@ -1261,7 +1261,7 @@ class Misc: # 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) |