Commit 1487c931 authored by Georg Brandl's avatar Georg Brandl

merge with 3.2

parents 9c7e100c 296d1bea
...@@ -878,22 +878,19 @@ are always available. They are listed here in alphabetical order. ...@@ -878,22 +878,19 @@ are always available. They are listed here in alphabetical order.
mode). It can be ``None``, ``''``, ``'\n'``, ``'\r'``, and ``'\r\n'``. It mode). It can be ``None``, ``''``, ``'\n'``, ``'\r'``, and ``'\r\n'``. It
works as follows: works as follows:
* When reading input from the stream, if *newline* is ``None``, * When reading input from the stream, if *newline* is ``None``, universal
universal newlines mode is enabled. Lines in the input can end newlines mode is enabled. Lines in the input can end in ``'\n'``,
in ``'\n'``, ``'\r'``, or ``'\r\n'``, and these are translated ``'\r'``, or ``'\r\n'``, and these are translated into ``'\n'`` before
into ``'\n'`` before being returned to the caller. If it is being returned to the caller. If it is ``''``, universal newline mode is
``''``, universal newline mode is enabled, but line endings are enabled, but line endings are returned to the caller untranslated. If it
returned to the caller untranslated. If it has any of the other has any of the other legal values, input lines are only terminated by the
legal values, input lines are only terminated by the given given string, and the line ending is returned to the caller untranslated.
string, and the line ending is returned to the caller
untranslated. * When writing output to the stream, if *newline* is ``None``, any ``'\n'``
characters written are translated to the system default line separator,
* When writing output to the stream, if *newline* is ``None``, any :data:`os.linesep`. If *newline* is ``''`` or ``'\n'``, no translation
``'\n'`` characters written are translated to the system default takes place. If *newline* is any of the other legal values, any ``'\n'``
line separator, :data:`os.linesep`. If *newline* is ``''`` or characters written are translated to the given string.
``'\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 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 given, the underlying file descriptor will be kept open when the file is
......
...@@ -771,22 +771,19 @@ Text I/O ...@@ -771,22 +771,19 @@ Text I/O
*newline* controls how line endings are handled. It can be ``None``, *newline* controls how line endings are handled. It can be ``None``,
``''``, ``'\n'``, ``'\r'``, and ``'\r\n'``. It works as follows: ``''``, ``'\n'``, ``'\r'``, and ``'\r\n'``. It works as follows:
* When reading input from the stream, if *newline* is ``None``, * When reading input from the stream, if *newline* is ``None``, universal
universal newlines mode is enabled. Lines in the input can end newlines mode is enabled. Lines in the input can end in ``'\n'``,
in ``'\n'``, ``'\r'``, or ``'\r\n'``, and these are translated ``'\r'``, or ``'\r\n'``, and these are translated into ``'\n'`` before
into ``'\n'`` before being returned to the caller. If it is being returned to the caller. If it is ``''``, universal newline mode is
``''``, universal newline mode is enabled, but line endings are enabled, but line endings are returned to the caller untranslated. If it
returned to the caller untranslated. If it has any of the other has any of the other legal values, input lines are only terminated by the
legal values, input lines are only terminated by the given given string, and the line ending is returned to the caller untranslated.
string, and the line ending is returned to the caller
untranslated. * When writing output to the stream, if *newline* is ``None``, any ``'\n'``
characters written are translated to the system default line separator,
* When writing output to the stream, if *newline* is ``None``, any :data:`os.linesep`. If *newline* is ``''`` or ``'\n'``, no translation
``'\n'`` characters written are translated to the system default takes place. If *newline* is any of the other legal values, any ``'\n'``
line separator, :data:`os.linesep`. If *newline* is ``''`` or characters written are translated to the given string.
``'\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 If *line_buffering* is ``True``, :meth:`flush` is implied when a call to
write contains a newline character. write contains a newline character.
......
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