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 cykerway
Recipients cykerway, ezio.melotti, vstinner
Date 2019-03-14.15:50:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552578635.55.0.427957631553.issue36293@roundup.psfhosted.org>
In-reply-to
Content
This piece of code will raise an error:

    import os
    import sys

    os.set_blocking(sys.stdin.fileno(), False)
    sys.stdin.read()

Error:

>   TypeError: can't concat NoneType to bytes

Not sure if this is relevant (for a different version of Python): https://bugs.python.org/issue24560
History
Date User Action Args
2019-03-14 15:50:35cykerwaysetrecipients: + cykerway, vstinner, ezio.melotti
2019-03-14 15:50:35cykerwaysetmessageid: <1552578635.55.0.427957631553.issue36293@roundup.psfhosted.org>
2019-03-14 15:50:35cykerwaylinkissue36293 messages
2019-03-14 15:50:35cykerwaycreate