This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kbrazil
Recipients eryksun, kbrazil
Date 2021-10-27.16:53:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635353605.04.0.464035783014.issue45617@roundup.psfhosted.org>
In-reply-to
Content
Also, I believe this docstring is being inherited, but this is also where it seems that '\r' is documented to work with sys.stdin:

>>> print(sys.stdin.__doc__)
Character and line based layer over a BufferedIOBase object, buffer.

encoding gives the name of the encoding that the stream will be
decoded or encoded with. It defaults to locale.getpreferredencoding(False).

errors determines the strictness of encoding and decoding (see
help(codecs.Codec) or the documentation for codecs.register) and
defaults to "strict".

newline controls how line endings are handled. It can be None, '',
'\n', '\r', and '\r\n'.  It works as follows:

* On input, if newline is None, universal newlines mode is
  enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
  these are translated into '\n' before being returned to the
  caller. If it is '', universal newline mode is enabled, but line
  endings are returned to the caller untranslated. If it has any of
  the other legal values, input lines are only terminated by the given
  string, and the line ending is returned to the caller untranslated.

* On output, if newline is None, any '\n' characters written are
  translated to the system default line separator, os.linesep. If
  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, a call to flush is implied when a call to
write contains a newline character.

I understand that sys.stdin is slightly different than an actual file being opened in text mode, but the documentation seems to suggest that it works pretty much the same. Though, in practice there is a slight difference in behavior.
History
Date User Action Args
2021-10-27 16:53:25kbrazilsetrecipients: + kbrazil, eryksun
2021-10-27 16:53:25kbrazilsetmessageid: <1635353605.04.0.464035783014.issue45617@roundup.psfhosted.org>
2021-10-27 16:53:25kbrazillinkissue45617 messages
2021-10-27 16:53:24kbrazilcreate