[Python-checkins] r69987 - python/trunk/Doc/library/stdtypes.rst

benjamin.peterson python-checkins at python.org
Thu Feb 26 01:30:12 CET 2009


Author: benjamin.peterson
Date: Thu Feb 26 01:30:11 2009
New Revision: 69987

Log:
fix str.format()'s first arg #5371

Modified:
   python/trunk/Doc/library/stdtypes.rst

Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Thu Feb 26 01:30:11 2009
@@ -892,7 +892,7 @@
    found.
 
 
-.. method:: str.format(format_string, *args, **kwargs)
+.. method:: str.format(*args, **kwargs)
 
    Perform a string formatting operation.  The *format_string* argument can
    contain literal text or replacement fields delimited by braces ``{}``.  Each


More information about the Python-checkins mailing list