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 methane
Recipients brett.cannon, eric.snow, fdrake, methane, ncoghlan
Date 2017-02-18.02:18:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487384305.03.0.586839460108.issue29592@psf.upfronthosting.co.za>
In-reply-to
Content
$ python2 -S
Python 2.7.12+ (default, Sep 17 2016, 12:08:02) 
[GCC 6.2.0 20160914] on linux2
>>> import x
>>> x.__file__
'x.py'

$ python3 -S
Python 3.6.0 (default, Dec 30 2016, 20:49:54) 
[GCC 6.2.0 20161005] on linux
>>> import x
>>> x.__file__
'/home/inada-n/x.py'

I think we can remove `abs_paths()` in site.py, thanks to _frozen_importlib_external.

I added all import experts to nosy list.
Please give me advice.
History
Date User Action Args
2017-02-18 02:18:25methanesetrecipients: + methane, fdrake, brett.cannon, ncoghlan, eric.snow
2017-02-18 02:18:25methanesetmessageid: <1487384305.03.0.586839460108.issue29592@psf.upfronthosting.co.za>
2017-02-18 02:18:24methanelinkissue29592 messages
2017-02-18 02:18:24methanecreate