Closed
Description
Line 13 in 5334732
Docs claim that \r
is a possible value for os.linesep
, however, I can't find any code that actually sets it to \r
.
But it can only be:
Docs:
.. data:: linesep
The string used to separate (or, rather, terminate) lines on the current
platform. This may be a single character, such as ``'\n'`` for POSIX, or
multiple characters, for example, ``'\r\n'`` for Windows. Do not use
*os.linesep* as a line terminator when writing files opened in text mode (the
default); use a single ``'\n'`` instead, on all platforms.
The internet says:
Windows: '\r\n'
Mac (OS 9-): '\r'
Mac (OS 10+): '\n'
Unix/Linux: '\n'
So, it looks like an outdated doc?
Linked PRs
Metadata
Metadata
Assignees
Labels
Projects
Status
Todo