Module docstring indicated seek() isn't implemented, but it is.

This commit is contained in:
Fred Drake 1998-04-11 19:54:54 +00:00
parent fab2f34538
commit 10032ebb48
1 changed files with 1 additions and 1 deletions

View 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"