From: Guilherme Polo Date: Sun, 31 May 2009 21:31:21 +0000 (+0000) Subject: Improved PanedWindow.add's docstring. 'subcomand' is a Tcl term, and the possible... X-Git-Tag: v2.7a1~1054 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c6787f9de88ab46e59c45c94067a7f0f6b1e978;p=python Improved PanedWindow.add's docstring. 'subcomand' is a Tcl term, and the possible options and values are the same accepted by paneconfigure (not configure). --- diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index 3cce276e0a..4f80ede82d 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -3550,8 +3550,8 @@ class PanedWindow(Widget): The child argument is the name of the child widget followed by pairs of arguments that specify how to - manage the windows. Options may have any of the values - accepted by the configure subcommand. + manage the windows. The possible options and values + are the ones accepted by the paneconfigure method. """ self.tk.call((self._w, 'add', child) + self._options(kw))