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 pitrou
Recipients Niels.Heinen, brett.cannon, eric.araujo, jcea, ncoghlan, pitrou, r.david.murray, serhiy.storchaka, vstinner
Date 2012-10-22.18:23:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350930236.08.0.393231396636.issue12238@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy, I don't think it's fixed in 3.3, or perhaps I'm misunderstanding what you mean by "fixed". If you create readline.cpython-33m.so in your cwd and then run python, the fake readline will still be loaded instead of the real one.

For example (here with 3.4):

$ touch readline.cpython-34dm.so
$ ./python
Python 3.4.0a0 (default:2a0c9472c89c, Oct 21 2012, 23:24:06) 
[GCC 4.5.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import readline
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: ./readline.cpython-34dm.so: file too short
History
Date User Action Args
2012-10-22 18:23:56pitrousetrecipients: + pitrou, brett.cannon, jcea, ncoghlan, vstinner, eric.araujo, r.david.murray, Niels.Heinen, serhiy.storchaka
2012-10-22 18:23:56pitrousetmessageid: <1350930236.08.0.393231396636.issue12238@psf.upfronthosting.co.za>
2012-10-22 18:23:56pitroulinkissue12238 messages
2012-10-22 18:23:55pitroucreate