[issue43537] interpreter crashes when handling long text in input()

2021-10-18 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python

[issue43537] interpreter crashes when handling long text in input()

2021-03-18 Thread STINNER Victor
STINNER Victor added the comment: It looks like a bug in libreadline. Python only calls rl_callback_handler_install (prompt, rlhandler); where prompt is a byte string of 60,000 bytes: len(repr([1,2]*1)). $ gdb ./python (gdb) run Python 3.10.0a6+ (heads/pycore_symtable-dirty:27700e0c8b,

[issue43537] interpreter crashes when handling long text in input()

2021-03-17 Thread Xinmeng Xia
Change by Xinmeng Xia : -- title: nterpreter crashes when handling long text in input() -> interpreter crashes when handling long text in input() ___ Python tracker ___ __