summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-10-18 03:17:41 (GMT)
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-10-18 03:17:41 (GMT)
commit5bf7f1f6e39fa399287fea6058c48842c2dd5a3a (patch)
treebcce958f412e9dae53d1e0e67b940f79ec2aa89c
parent0dccbe138776715a3778e97b92cc1922f172f3ab (diff)
downloadcpython-5bf7f1f6e39fa399287fea6058c48842c2dd5a3a.zip
cpython-5bf7f1f6e39fa399287fea6058c48842c2dd5a3a.tar.gz
cpython-5bf7f1f6e39fa399287fea6058c48842c2dd5a3a.tar.bz2
Clarify universal-newline wording in tutorial (issue #16266).
-rw-r--r--Doc/tutorial/inputoutput.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst
index 73143be..1324359 100644
--- a/Doc/tutorial/inputoutput.rst
+++ b/Doc/tutorial/inputoutput.rst
@@ -256,9 +256,10 @@ default being UTF-8). ``'b'`` appended to the mode opens the file in
:dfn:`binary mode`: now the data is read and written in the form of bytes
objects. This mode should be used for all files that don't contain text.
-In text mode, the default is to convert platform-specific line endings (``\n``
-on Unix, ``\r\n`` on Windows) to just ``\n`` on reading and ``\n`` back to
-platform-specific line endings on writing. This behind-the-scenes modification
+In text mode, the default when reading is to convert platform-specific line
+endings (``\n`` on Unix, ``\r\n`` on Windows) to just ``\n``. When writing in
+text mode, the default is to convert occurrences of ``\n`` back to
+platform-specific line endings. This behind-the-scenes modification
to file data is fine for text files, but will corrupt binary data like that in
:file:`JPEG` or :file:`EXE` files. Be very careful to use binary mode when
reading and writing such files.