Correct bug doc string (discovered by Berthold Hoellmann):

get_line_buffer() does not take an optional argument.
This commit is contained in:
Guido van Rossum 1998-05-20 15:50:56 +00:00
parent 0bd5433cf8
commit a88c5f30c7

View 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.\
";