mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't
translate newlines on output.
This commit is contained in:
parent
0c1c0d42dc
commit
401e17d0f0
4 changed files with 12 additions and 12 deletions
|
@ -888,9 +888,9 @@ are always available. They are listed here in alphabetical order.
|
|||
|
||||
* On output, if *newline* is ``None``, any ``'\n'`` characters written are
|
||||
translated to the system default line separator, :data:`os.linesep`. If
|
||||
*newline* is ``''``, no translation takes place. If *newline* is any of
|
||||
the other legal values, any ``'\n'`` characters written are translated to
|
||||
the given string.
|
||||
*newline* is ``''`` or ``'\n'``, no translation takes place. If *newline*
|
||||
is any of the other legal values, any ``'\n'`` characters written are
|
||||
translated to the given string.
|
||||
|
||||
If *closefd* is ``False`` and a file descriptor rather than a filename was
|
||||
given, the underlying file descriptor will be kept open when the file is
|
||||
|
|
|
@ -770,9 +770,9 @@ Text I/O
|
|||
|
||||
* On output, if *newline* is ``None``, any ``'\n'`` characters written are
|
||||
translated to the system default line separator, :data:`os.linesep`. If
|
||||
*newline* is ``''``, no translation takes place. If *newline* is any of
|
||||
the other legal values, any ``'\n'`` characters written are translated to
|
||||
the given string.
|
||||
*newline* is ``''`` or ``'\n'``, no translation takes place. If *newline*
|
||||
is any of the other legal values, any ``'\n'`` characters written are
|
||||
translated to the given string.
|
||||
|
||||
If *line_buffering* is ``True``, :meth:`flush` is implied when a call to
|
||||
write contains a newline character.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue