diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-04-17 13:13:55 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-04-17 13:13:55 +0000 |
commit | 6e5be22d9747b7d8ebc2b09a3d5492f00ab296eb (patch) | |
tree | 8d323760fe745dde8e7ce0a54ab45d2e5e14c8bc /Lib/lib-tk/Tkinter.py | |
parent | c1f6e8cbc1d60c5fe00121c67bfc581301e7ce50 (diff) | |
download | cpython-git-6e5be22d9747b7d8ebc2b09a3d5492f00ab296eb.tar.gz |
Remove extra space in docstring
Diffstat (limited to 'Lib/lib-tk/Tkinter.py')
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 2a822a1937..8f598b82db 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -378,7 +378,7 @@ class Misc: getint = int getdouble = float def getboolean(self, s): - """Return a boolean value for Tcl boolean values true and false given as parameter.""" + """Return a boolean value for Tcl boolean values true and false given as parameter.""" return self.tk.getboolean(s) def focus_set(self): """Direct input focus to this widget. |