diff options
author | Fred Drake <fdrake@acm.org> | 1998-04-11 19:54:54 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-04-11 19:54:54 (GMT) |
commit | 10032ebb48b4e9b8b2eb7c378d3a579da36204d6 (patch) | |
tree | e2832198ba0d03418ccfbdea3be4c33757dbcdfd | |
parent | fab2f345386ccb32cf5fea922dd639e51e1818c4 (diff) | |
download | cpython-10032ebb48b4e9b8b2eb7c378d3a579da36204d6.zip cpython-10032ebb48b4e9b8b2eb7c378d3a579da36204d6.tar.gz cpython-10032ebb48b4e9b8b2eb7c378d3a579da36204d6.tar.bz2 |
Module docstring indicated seek() isn't implemented, but it is.
-rw-r--r-- | Modules/cStringIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c index 5d9597f..09713e3 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" |