[issue16151] Deferred KeyboardInterrupt in interactive mode

2016-03-22 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> out of date stage: test needed -> resolved status: open -> closed ___ Python tracker ___

[issue16151] Deferred KeyboardInterrupt in interactive mode

2015-11-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +No prompt for "display all X possibilities" on completion-enabled input() ___ Python tracker ___

[issue16151] Deferred KeyboardInterrupt in interactive mode

2015-11-27 Thread Martin Panter
Martin Panter added the comment: Discovered Issue 22923 is already open about “Display all possibilities” problem. It sounds like that may be a regression in Readline, not Python. -- ___ Python tracker ___

[issue16151] Deferred KeyboardInterrupt in interactive mode

2015-10-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I can't reproduce original behavior anymore. In 3.4+ at the begin of the line inserts the tabulation character. In 2.7 and 3.3- double causes the behavior described by Martin. Yes, please open new issue about the “Display all possibilities” prompt Martin.

[issue16151] Deferred KeyboardInterrupt in interactive mode

2015-10-12 Thread Martin Panter
Martin Panter added the comment: FWIW the “Display all possibilities” prompt works properly in Bash, so maybe I have a separate bug somewhere which is masking Serhiy’s bug. -- ___ Python tracker __

[issue16151] Deferred KeyboardInterrupt in interactive mode

2015-10-12 Thread Martin Panter
Martin Panter added the comment: I can’t reproduce this on 2.7.10 nor 3.4.3, on Arch Linux with Gnu Readline 6.3.008-1. Instead, when I press , I see the y or n query printed, but it is immediately followed by all the possibilities (as if I said Y) without any chance to actually enter Y or N o

[issue16151] Deferred KeyboardInterrupt in interactive mode

2012-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Amaury, run the followed commands: import readline, rlcompleter readline.parse_and_bind('tab: complete') Hint: you can add this to your .pythonrc.py. -- ___ Python tracker

[issue16151] Deferred KeyboardInterrupt in interactive mode

2012-10-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Nothing. I think it depends if Python was build with readline support. -- ___ Python tracker ___ _

[issue16151] Deferred KeyboardInterrupt in interactive mode

2012-10-16 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: My Python interpreter does not have auto-completion. Do you import something special at startup? -- nosy: +amaury.forgeotdarc ___ Python tracker ___

[issue16151] Deferred KeyboardInterrupt in interactive mode

2012-10-06 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here are some strange behavior I see (on Linux). Run Python in interactive mode. Press . Message "Display all XXX possibilities? (y or n)" showed. Press , then . Prompt showed. Enter any text (or none) and press . KeyboardInterrupt exception raised. In Py