summaryrefslogtreecommitdiffstats
path: root/Lib/_pyio.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-11-03 04:17:11 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-11-03 04:17:11 (GMT)
commite64052176d998a0f1397fc5fa60875e2f0371296 (patch)
tree24bef62ead0b04345cc7e83c6c0e438ef0929c20 /Lib/_pyio.py
parent880801501b778d93079afc11672dba86e60eab94 (diff)
parentc465b2f843218565c2908528555fbdb7c95523c0 (diff)
downloadcpython-e64052176d998a0f1397fc5fa60875e2f0371296.zip
cpython-e64052176d998a0f1397fc5fa60875e2f0371296.tar.gz
cpython-e64052176d998a0f1397fc5fa60875e2f0371296.tar.bz2
Merge follow-up for #11254 and other changes from 3.2
Diffstat (limited to 'Lib/_pyio.py')
-rw-r--r--Lib/_pyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index 39c1717..fec1c6f 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -1455,7 +1455,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.