Commit c5207c84 authored by Georg Brandl's avatar Georg Brandl

Patch #1714700: clarify os.linesep vs. tfiles opened in text mode.

 (backport)
parent bc1b5f16
......@@ -2009,9 +2009,12 @@ Also available via \module{os.path}.
\begin{datadesc}{linesep}
The string used to separate (or, rather, terminate) lines on the
current platform. This may be a single character, such as \code{'\e
n'} for \POSIX{} or \code{'\e r'} for Mac OS, or multiple characters,
for example, \code{'\e r\e n'} for Windows.
current platform. This may be a single character, such as
\code{'\e n'} for \POSIX{} or \code{'\e r'} for Mac OS, or multiple
characters, for example, \code{'\e r\e n'} for Windows.
Do not use \var{os.linesep} as a line terminator when writing files
opened in text mode (the default); use a single \code{'\e n'} instead,
on all platforms.
\end{datadesc}
\begin{datadesc}{devnull}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment