This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dabeaz
Recipients belopolsky, cben, dabeaz, eric.araujo, ezio.melotti, flox, giampaolo.rodola, jaraco, larry, lesmana, loewis, mark.dickinson, ned.deily, pitrou, python-dev, r.david.murray, ronaldoussoren, serhiy.storchaka, steven.daprano, techtonik, tshepang, xdegaye
Date 2014-04-09.00:17:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397002664.73.0.967344092041.issue5845@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2014-04-09 00:17:45dabeazsetrecipients: + dabeaz, loewis, ronaldoussoren, mark.dickinson, cben, jaraco, belopolsky, pitrou, larry, techtonik, giampaolo.rodola, ned.deily, ezio.melotti, eric.araujo, steven.daprano, r.david.murray, flox, lesmana, xdegaye, tshepang, python-dev, serhiy.storchaka
2014-04-09 00:17:44dabeazsetmessageid: <1397002664.73.0.967344092041.issue5845@psf.upfronthosting.co.za>
2014-04-09 00:17:44dabeazlinkissue5845 messages
2014-04-09 00:17:43dabeazcreate