[issue22923] No prompt for "display all X possibilities" on completion-enabled input()

2016-01-31 Thread Yoha
Changes by Yoha <y...@sinon.org>: -- resolution: -> duplicate status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.

[issue26245] AttributeError (GL_READ_WRITE) when importing OpenGL.GL

2016-01-31 Thread Yoha
New submission from Yoha: Importing `OpenGL.GL` fails on Python 3.5: ``` Python 3.5.1+ (default, Jan 13 2016, 15:09:18) [GCC 5.3.1 20160101] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import OpenGL.GL Tra

[issue22923] No prompt for display all X possibilities on completion-enabled input()

2014-11-23 Thread Yoha
New submission from Yoha: When running input() (or raw_input() for Python 2) while tab-completion has been enabled using `readline.parse_and_bind('tab: complete')`, pressing the tab key twice display the message `Display all X possibilities? (y or n)` when there are more than 100 remaining

[issue22923] No prompt for display all X possibilities on completion-enabled input()

2014-11-23 Thread Yoha
Yoha added the comment: Forgot to list the system: the bug has been tested and reproduced on Debian amd64, both wheezie and jessie. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22923

[issue22923] No prompt for display all X possibilities on completion-enabled input()

2014-11-23 Thread Yoha
Yoha added the comment: I have found the culprit. It is actually coming from libreadline: http://git.savannah.gnu.org/cgit/readline.git/tree/complete.c#n517 where the answer is always set to yes in callback mode. According to `git blame`, this is has been so since version 6.2 at least three