summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilherme Polo <ggpolo@gmail.com>2009-05-31 21:31:21 (GMT)
committerGuilherme Polo <ggpolo@gmail.com>2009-05-31 21:31:21 (GMT)
commit1c6787f9de88ab46e59c45c94067a7f0f6b1e978 (patch)
tree95532fca3bb7fdc4cb408d14d55024fc8d808bb3
parent8fcaebbef48f411e71e64bce32c40d8cb810fe23 (diff)
downloadcpython-1c6787f9de88ab46e59c45c94067a7f0f6b1e978.zip
cpython-1c6787f9de88ab46e59c45c94067a7f0f6b1e978.tar.gz
cpython-1c6787f9de88ab46e59c45c94067a7f0f6b1e978.tar.bz2
Improved PanedWindow.add's docstring. 'subcomand' is a Tcl term, and the possible options and values are the same accepted by paneconfigure (not configure).
-rw-r--r--Lib/lib-tk/Tkinter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index 3cce276..4f80ede 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))