summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/Tkinter.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-07-06 05:34:14 (GMT)
committerGuido van Rossum <guido@python.org>2000-07-06 05:34:14 (GMT)
commit0a3f7978c40742672a01f3a5ea537e9f45b8b59f (patch)
tree5eaf4b75d33cfda6d9bff607ac65aacb71ddcffe /Lib/lib-tk/Tkinter.py
parent5802e4803347524813c3d34add55851450ff8ddc (diff)
downloadcpython-0a3f7978c40742672a01f3a5ea537e9f45b8b59f.zip
cpython-0a3f7978c40742672a01f3a5ea537e9f45b8b59f.tar.gz
cpython-0a3f7978c40742672a01f3a5ea537e9f45b8b59f.tar.bz2
Change whitespace in two places to silence tabnanny.
Also fix spelling tupel -> tuple.
Diffstat (limited to 'Lib/lib-tk/Tkinter.py')
-rw-r--r--Lib/lib-tk/Tkinter.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index 1a0c9c3..a70e064 100644
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -91,7 +91,7 @@ try: _cnfmerge = _tkinter._cnfmerge
except AttributeError: pass
class Event:
- """Container for the properties of an event.
+ """Container for the properties of an event.
Instances of this type are generated if one of the following events occurs:
@@ -677,12 +677,12 @@ class Misc:
return getint(
self.tk.call('winfo', 'pointerx', self._w))
def winfo_pointerxy(self):
- """Return a tupel of x and y coordinates of the pointer on the root window."""
+ """Return a tuple of x and y coordinates of the pointer on the root window."""
return self._getints(
self.tk.call('winfo', 'pointerxy', self._w))
def winfo_pointery(self):
"""Return the y coordinate of the pointer on the root window."""
- return getint(
+ return getint(
self.tk.call('winfo', 'pointery', self._w))
def winfo_reqheight(self):
"""Return requested height of this widget."""
@@ -693,7 +693,7 @@ class Misc:
return getint(
self.tk.call('winfo', 'reqwidth', self._w))
def winfo_rgb(self, color):
- """Return tupel of decimal values for red, green, blue for
+ """Return tuple of decimal values for red, green, blue for
COLOR in this widget."""
return self._getints(
self.tk.call('winfo', 'rgb', self._w, color))