]> granicus.if.org Git - python/commitdiff
Correct bug doc string (discovered by Berthold Hoellmann):
authorGuido van Rossum <guido@python.org>
Wed, 20 May 1998 15:50:56 +0000 (15:50 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 20 May 1998 15:50:56 +0000 (15:50 +0000)
get_line_buffer() does not take an optional argument.

Modules/readline.c

index 594732b32bcb4f84576cfc1f60e51808bdefc73b..79b8870ce2aaf06b9c4ce89edd6c58024d6bcd5f 100644 (file)
@@ -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.\
 ";