From: Guido van Rossum Date: Wed, 20 May 1998 15:50:56 +0000 (+0000) Subject: Correct bug doc string (discovered by Berthold Hoellmann): X-Git-Tag: v1.5.2a1~582 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a88c5f30c75021433d2a55704a9d6ca9676d09c6;p=python Correct bug doc string (discovered by Berthold Hoellmann): get_line_buffer() does not take an optional argument. --- diff --git a/Modules/readline.c b/Modules/readline.c index 594732b32b..79b8870ce2 100644 --- a/Modules/readline.c +++ b/Modules/readline.c @@ -132,7 +132,7 @@ get_line_buffer(self, args) } static char doc_get_line_buffer[] = "\ -get_line_buffer([function]) -> string\n\ +get_line_buffer() -> string\n\ return the current contents of the line buffer.\ ";