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 prasechen
Recipients koobs, larry, paul.moore, prasechen, steve.dower, tim.golden, zach.ware
Date 2021-08-10.14:28:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1628605696.03.0.149874041325.issue44879@roundup.psfhosted.org>
In-reply-to
Content
# Ɪ know, if Ɪ press enter key while input(), the method will be completed and return a str value.
# Ɪ am trying to insert newline characters as normal characters while input() method.
# The “normal characters” means:
# 1. It can be deleted by backspace(“\x7b”) or EOF or delete key.
# 2. It can be interprered as a normal byte.
# Ɪ tried by the readline module, it did work. But it may crash, like:
# Traceback (most recent call last):
#   File "<stdin>", line 1, in <module>
# SyntaxError: multiple statements found while compiling a single statement
History
Date User Action Args
2021-08-10 14:28:16prasechensetrecipients: + prasechen, paul.moore, larry, tim.golden, zach.ware, koobs, steve.dower
2021-08-10 14:28:16prasechensetmessageid: <1628605696.03.0.149874041325.issue44879@roundup.psfhosted.org>
2021-08-10 14:28:15prasechenlinkissue44879 messages
2021-08-10 14:28:15prasechencreate