summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-04-06 20:27:02 (GMT)
committerGeorg Brandl <georg@python.org>2008-04-06 20:27:02 (GMT)
commit5358434fd3899a369e4892807b0abaedaf2ea44b (patch)
treefab7d3767cbb54ca9758f9786162a12513ac0340 /Lib
parent99ddc8c603dd00cb855b7a6f872f529666b3cdbb (diff)
downloadcpython-5358434fd3899a369e4892807b0abaedaf2ea44b.zip
cpython-5358434fd3899a369e4892807b0abaedaf2ea44b.tar.gz
cpython-5358434fd3899a369e4892807b0abaedaf2ea44b.tar.bz2
Docstring fix.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/io.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/io.py b/Lib/io.py
index fe03bf2..47d1ac5 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")