From: Fred Drake Date: Sat, 11 Apr 1998 19:54:54 +0000 (+0000) Subject: Module docstring indicated seek() isn't implemented, but it is. X-Git-Tag: v1.5.1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10032ebb48b4e9b8b2eb7c378d3a579da36204d6;p=thirdparty%2FPython%2Fcpython.git Module docstring indicated seek() isn't implemented, but it is. --- diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c index 5d9597fbe316..09713e3d3a71 100644 --- a/Modules/cStringIO.c +++ b/Modules/cStringIO.c @@ -79,7 +79,7 @@ static char cStringIO_module_documentation[] = " an_input_stream=StringIO(a_string)\n" " spam=an_input_stream.readline()\n" " spam=an_input_stream.read(5)\n" -" an_input_stream.reset() # OK, start over, note no seek yet\n" +" an_input_stream.reset() # OK, start over\n" " spam=an_input_stream.read() # and read it all\n" " \n" "If someone else wants to provide a more complete implementation,\n"