From a168698ab3108d3f8d35feed3d0c449ebeda5467 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 26 Feb 2009 00:30:11 +0000 Subject: [PATCH] fix str.format()'s first arg #5371 --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index fe78be78420..7338f952549 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -892,7 +892,7 @@ string functions based on regular expressions. 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