[Python-checkins] r73084 - in python/branches/py3k: Lib/tkinter/__init__.py

guilherme.polo python-checkins at python.org
Sun May 31 23:35:23 CEST 2009


Author: guilherme.polo
Date: Sun May 31 23:35:23 2009
New Revision: 73084

Log:
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).
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/tkinter/__init__.py

Modified: python/branches/py3k/Lib/tkinter/__init__.py
==============================================================================
--- python/branches/py3k/Lib/tkinter/__init__.py	(original)
+++ python/branches/py3k/Lib/tkinter/__init__.py	Sun May 31 23:35:23 2009
@@ -3534,8 +3534,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