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 arigo
Recipients arigo
Date 2016-11-09.10:26:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1478687165.61.0.754522524524.issue28647@psf.upfronthosting.co.za>
In-reply-to
Content
``python3.5 --help`` gives this information:

    -u : unbuffered binary stdout and stderr, stdin always buffered

However, stdout and stderr are actually always opened in text mode, and print() always expects a string and never a bytes object.  This usage of "binary" in the --help is in contradiction with the usage of "binary" in the description of files (e.g. ``help(open)``).
History
Date User Action Args
2016-11-09 10:26:05arigosetrecipients: + arigo
2016-11-09 10:26:05arigosetmessageid: <1478687165.61.0.754522524524.issue28647@psf.upfronthosting.co.za>
2016-11-09 10:26:05arigolinkissue28647 messages
2016-11-09 10:26:05arigocreate