[issue5845] rlcompleter should be enabled automatically

David Beazley report at bugs.python.org
Wed Apr 9 02:17:44 CEST 2014


David Beazley added the comment:

Funny thing, this feature breaks the interactive interpreter in the most basic way on OS X systems.   For example, the tab key won't even work to indent.  You can't even type the most basic programs into the interactive interpreter. For example:

>>> for i in range(10):
...      print(i)

Oh sure, you can make it work by typing the space bar a bunch of times, but it's extremely annoying.  

The only way I was able to get a working interactive interpreter on my machine was to manually edit site.py and remove the call to enablerlcompleter() from main().

I hope someone reconsiders this feature and removes it as default behavior.

----------
nosy: +dabeaz

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue5845>
_______________________________________


More information about the Python-bugs-list mailing list