diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 12:44:29 (GMT) |
commit | 4a7c03aab455613e9ba898b7cae73459fadd57ac (patch) | |
tree | d09ea360154f3e045e2f5a76a172b0e6417fc957 /Lib/tkinter | |
parent | df8f5b56c9dc5e950f39ed0221212256a39c1835 (diff) | |
parent | f51d715845dfede2803ef7a2e6ea4e2a03f18486 (diff) | |
download | cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.zip cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.gz cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.bz2 |
Issue #25523: Merge a-to-an corrections from 3.5.
Diffstat (limited to 'Lib/tkinter')
-rw-r--r-- | Lib/tkinter/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index ea747ac..12085a9 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -1123,7 +1123,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): |