[issue25614] Lib/code.py: InteractiveConsole.raw_input writes prompt to stdout

2019-03-23 Thread Cheryl Sabella
Cheryl Sabella added the comment: Since there was no additional information provided by the original poster, I'm going to close this. Feel free to reopen if there is a use case. -- nosy: +cheryl.sabella resolution: -> not a bug stage: -> resolved status: open -> closed ___

[issue25614] Lib/code.py: InteractiveConsole.raw_input writes prompt to stdout

2015-12-10 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report! Unfortunately, self.write(prompt) return input() is not equivalent of ``return input(prompt)``. Could you give more information about your use case? -- nosy: +berker.peksag ___ Python

[issue25614] Lib/code.py: InteractiveConsole.raw_input writes prompt to stdout

2015-11-12 Thread Yclept Nemo
New submission from Yclept Nemo: Just like InteractiveInterpreter.write and the actual python interpreter, the console's prompt should be written to stderr. Something like: self.write(prompt) return input() -- components: Library (Lib) messages: 254575 nosy: Yclept.Nemo priority: norma