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, pitrou, r.david.murray, vstinner
Date 2011-06-07.11:08:02
SpamBayes Score 3.4226126e-08
Marked as misclassified No
Message-id <1307444885.55.0.481801696334.issue12238@psf.upfronthosting.co.za>
In-reply-to
Content
I don't think readline is "special-cased":

$ echo "1/0" > logging.py
$ cpython/default/python
Python 3.3a0 (default:d8502fee4638+, Jun  6 2011, 19:13:58) 
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import logging
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "logging.py", line 1, in <module>
    1/0
ZeroDivisionError: division by zero
History
Date User Action Args
2011-06-07 11:08:05pitrousetrecipients: + pitrou, brett.cannon, jcea, vstinner, eric.araujo, r.david.murray, Niels.Heinen
2011-06-07 11:08:05pitrousetmessageid: <1307444885.55.0.481801696334.issue12238@psf.upfronthosting.co.za>
2011-06-07 11:08:03pitroulinkissue12238 messages
2011-06-07 11:08:02pitroucreate