diff options
author | Georg Brandl <georg@python.org> | 2008-04-06 20:27:02 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-04-06 20:27:02 (GMT) |
commit | 5358434fd3899a369e4892807b0abaedaf2ea44b (patch) | |
tree | fab7d3767cbb54ca9758f9786162a12513ac0340 /Lib | |
parent | 99ddc8c603dd00cb855b7a6f872f529666b3cdbb (diff) | |
download | cpython-5358434fd3899a369e4892807b0abaedaf2ea44b.zip cpython-5358434fd3899a369e4892807b0abaedaf2ea44b.tar.gz cpython-5358434fd3899a369e4892807b0abaedaf2ea44b.tar.bz2 |
Docstring fix.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/io.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -246,8 +246,8 @@ class IOBase(metaclass=abc.ABCMeta): Seek to byte offset pos relative to position indicated by whence: 0 Start of stream (the default). pos should be >= 0; - 1 Current position - whence may be negative; - 2 End of stream - whence usually negative. + 1 Current position - pos may be negative; + 2 End of stream - pos usually negative. Returns the new absolute position. """ self._unsupported("seek") |