summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-11-02 23:08:48 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-11-02 23:08:48 (GMT)
commit39242304984fe23c72179b87c46194a157501510 (patch)
tree29a3a4291fdc0b6a3200bf978f9fdd3dde8a2e2d /Lib
parentaf2ffd75cf9900963d970657c7db5e3362f4548a (diff)
downloadcpython-39242304984fe23c72179b87c46194a157501510.zip
cpython-39242304984fe23c72179b87c46194a157501510.tar.gz
cpython-39242304984fe23c72179b87c46194a157501510.tar.bz2
Fix typo
Diffstat (limited to 'Lib')
-rw-r--r--Lib/_pyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index 78c6d95..3fa9325 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -1460,7 +1460,7 @@ class TextIOWrapper(TextIOBase):
enabled. With this enabled, on input, the lines endings '\n', '\r',
or '\r\n' are translated to '\n' before being returned to the
caller. Conversely, on output, '\n' is translated to the system
- default line seperator, os.linesep. If newline is any other of its
+ default line separator, os.linesep. If newline is any other of its
legal values, that newline becomes the newline when the file is read
and it is returned untranslated. On output, '\n' is converted to the
newline.