From: Neal Norwitz Date: Thu, 17 Apr 2003 13:13:55 +0000 (+0000) Subject: Remove extra space in docstring X-Git-Tag: v2.3c1~1157 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e5be22d9747b7d8ebc2b09a3d5492f00ab296eb;p=thirdparty%2FPython%2Fcpython.git Remove extra space in docstring --- diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 2a822a1937f1..8f598b82db1e 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.