summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/Tkinter.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 13:06:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 13:06:09 (GMT)
commitc72e66a0489ee53aaf89c677c5b709d30b359532 (patch)
treedaa871e7fdabf80f5da22dd1a5d3dc33b5efce52 /Lib/lib-tk/Tkinter.py
parenta5ad9da50422a5ce2f80e05b816e74c0e004e247 (diff)
downloadcpython-c72e66a0489ee53aaf89c677c5b709d30b359532.zip
cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.gz
cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.bz2
Issue #25523: Backported a-to-an corrections.
Diffstat (limited to 'Lib/lib-tk/Tkinter.py')
-rw-r--r--Lib/lib-tk/Tkinter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index cb7edf0..b4f6b3c 100644
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -1117,7 +1117,7 @@ class Misc:
return self._bind(('bind', className), sequence, func, add, 0)
def unbind_class(self, className, sequence):
- """Unbind for a all widgets with bindtag CLASSNAME for event SEQUENCE
+ """Unbind for all widgets with bindtag CLASSNAME for event SEQUENCE
all functions."""
self.tk.call('bind', className , sequence, '')
def mainloop(self, n=0):