]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Module docstring indicated seek() isn't implemented, but it is.
authorFred Drake <fdrake@acm.org>
Sat, 11 Apr 1998 19:54:54 +0000 (19:54 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 11 Apr 1998 19:54:54 +0000 (19:54 +0000)
Modules/cStringIO.c

index 5d9597fbe3166b813e2a7e9b18b694da19e568f2..09713e3d3a71463045810822d6ff164184ad00e1 100644 (file)
@@ -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"