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 ncoghlan
Recipients Jurko.Gospodnetić, barry, brett.cannon, eric.snow, ncoghlan, ned.deily, r.david.murray
Date 2014-03-12.12:27:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394627256.46.0.0195757573034.issue20884@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, I think we still have something weird going on:


$ python3
Python 3.3.2 (default, Nov  8 2013, 13:38:57) 
[GCC 4.8.2 20131017 (Red Hat 4.8.2-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import _frozen_importlib
>>> _frozen_importlib.__file__
'/home/ncoghlan/<frozen>'
>>> 

$ ./python
Python 3.4.0rc1+ (default, Mar 11 2014, 19:49:01) 
[GCC 4.8.2 20131212 (Red Hat 4.8.2-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import _frozen_importlib
>>> _frozen_importlib.__file__
'/home/ncoghlan/devel/py3k/<frozen>'

Perhaps the problem is specifically with frozen *packages*? I don't currently have a handy one of those to test against, so I added a comment to the BitBucket issue suggest a possible simplification of the reproducer that would confirm the theory.
History
Date User Action Args
2014-03-12 12:27:36ncoghlansetrecipients: + ncoghlan, barry, brett.cannon, ned.deily, r.david.murray, Jurko.Gospodnetić, eric.snow
2014-03-12 12:27:36ncoghlansetmessageid: <1394627256.46.0.0195757573034.issue20884@psf.upfronthosting.co.za>
2014-03-12 12:27:36ncoghlanlinkissue20884 messages
2014-03-12 12:27:36ncoghlancreate