From: Georg Brandl Date: Sun, 6 Apr 2008 20:27:02 +0000 (+0000) Subject: Docstring fix. X-Git-Tag: v3.0a5~131 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5358434fd3899a369e4892807b0abaedaf2ea44b;p=python Docstring fix. --- diff --git a/Lib/io.py b/Lib/io.py index fe03bf2bfc..47d1ac570d 100644 --- a/Lib/io.py +++ b/Lib/io.py @@ -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")