[issue1927] Change input() to always prompt to stderr

2022-01-17 Thread Irit Katriel
Irit Katriel added the comment: See also Issue31603. -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue1927] Change input() to always prompt to stderr

2022-01-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Further discussion at https://discuss.python.org/t/builtin-function-input-writes-its-prompt-to-sys-stderr-and-not-to-sys-stdout/12955 -- nosy: +terry.reedy versions: +Python 3.11 -Python 3.6 ___ Python tracker

[issue1927] Change input() to always prompt to stderr

2018-06-11 Thread Tal Einat
Change by Tal Einat : -- nosy: -taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue1927] Change input() to always prompt to stderr

2017-10-10 Thread Carvell Scott
Change by Carvell Scott : -- nosy: +Carvell Scott ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue1927] Change input() to always prompt to stderr

2016-06-14 Thread Adam Bartoš
Adam Bartoš added the comment: Regarding the comment by Martin Panter from 2015-11-22: It would be nice if PyOS_StdioReadline worked that way. Unfortunately, it's still based on C file objects and char* for the prompt string rather than using actual Python objects. The relevant issue is issue1

[issue1927] Change input() to always prompt to stderr

2016-02-06 Thread Martin Panter
Martin Panter added the comment: This proposal is starting to sound reasonable to me. Changing the title to reflect the new direction. -- stage: patch review -> needs patch title: raw_input behavior incorrect if readline not enabled -> Change input() to always prompt to stderr versions