From: Éric Araujo Date: Wed, 2 Nov 2011 23:08:48 +0000 (+0100) Subject: Fix typo X-Git-Tag: v3.2.3rc1~433^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39242304984fe23c72179b87c46194a157501510;p=thirdparty%2FPython%2Fcpython.git Fix typo --- diff --git a/Lib/_pyio.py b/Lib/_pyio.py index 78c6d95c2301..3fa932563b3f 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.