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 serhiy.storchaka
Recipients eryksun, kushal.das, serhiy.storchaka, terry.reedy, Костя Чолак
Date 2017-05-28.07:56:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495958165.25.0.795173203035.issue30431@psf.upfronthosting.co.za>
In-reply-to
Content
If stdin and stdout are attached to a terminal, input() uses the readline library (if it is available) for displaying the prompt and reading user input. This is the limitation of the readline library and Python C API that this works with null-terminated C strings. You also can't enter the null character.

UnicodeEncodingError is raised if the prompt contains characters not encodable with the stdout encoding. Consider ValueError raised if the prompt contains the null character as similar restriction.
History
Date User Action Args
2017-05-28 07:56:05serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, kushal.das, eryksun, Костя Чолак
2017-05-28 07:56:05serhiy.storchakasetmessageid: <1495958165.25.0.795173203035.issue30431@psf.upfronthosting.co.za>
2017-05-28 07:56:05serhiy.storchakalinkissue30431 messages
2017-05-28 07:56:04serhiy.storchakacreate