[Python-checkins] r73083 - python/trunk/Lib/lib-tk/Tkinter.py
guilherme.polo
python-checkins at python.org
Sun May 31 23:31:21 CEST 2009
Author: guilherme.polo
Date: Sun May 31 23:31:21 2009
New Revision: 73083
Log:
Improved PanedWindow.add's docstring. 'subcomand' is a Tcl term, and the possible options and values are the same accepted by paneconfigure (not configure).
Modified:
python/trunk/Lib/lib-tk/Tkinter.py
Modified: python/trunk/Lib/lib-tk/Tkinter.py
==============================================================================
--- python/trunk/Lib/lib-tk/Tkinter.py (original)
+++ python/trunk/Lib/lib-tk/Tkinter.py Sun May 31 23:31:21 2009
@@ -3550,8 +3550,8 @@
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))
More information about the Python-checkins
mailing list