summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilherme Polo <ggpolo@gmail.com>2009-05-31 21:35:23 (GMT)
committerGuilherme Polo <ggpolo@gmail.com>2009-05-31 21:35:23 (GMT)
commit86425563e8177b54a5948df044462a7346e4580e (patch)
treef9cfd987ba274028421e9a0f8bc10b6854bfdb5b
parent1855c214d78b15dd6a46a97dc585503b34e49807 (diff)
downloadcpython-86425563e8177b54a5948df044462a7346e4580e.zip
cpython-86425563e8177b54a5948df044462a7346e4580e.tar.gz
cpython-86425563e8177b54a5948df044462a7346e4580e.tar.bz2
Merged revisions 73083 via svnmerge from
svn+ssh://pythondev/python/trunk ........ r73083 | guilherme.polo | 2009-05-31 18:31:21 -0300 (Sun, 31 May 2009) | 1 line 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/tkinter/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py
index b84bdf0..03ac924 100644
--- a/Lib/tkinter/__init__.py
+++ b/Lib/tkinter/__init__.py
@@ -3534,8 +3534,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))