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 htgoebel
Recipients htgoebel
Date 2018-03-23.23:30:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1521847841.75.0.467229070634.issue33128@psf.upfronthosting.co.za>
In-reply-to
Content
As of Python 3.7.0b2 _frozen_importlib_external.PathFinder exists twice on sys.meta_path, and it is the same object:

$ python -S
Python 3.7.0b2 (default, Mar 22 2018, 20:09:00) 
[GCC 5.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> print(sys.meta_path)
[<class '_frozen_importlib.BuiltinImporter'>,
<class '_frozen_importlib.FrozenImporter'>,
<class '_frozen_importlib_external.PathFinder'>,
<class '_frozen_importlib_external.PathFinder'>]
>>> print([id(p) for p in sys.meta_path])
[24427944, 24430216, 24517416, 24517416]
>>>
History
Date User Action Args
2018-03-23 23:30:41htgoebelsetrecipients: + htgoebel
2018-03-23 23:30:41htgoebelsetmessageid: <1521847841.75.0.467229070634.issue33128@psf.upfronthosting.co.za>
2018-03-23 23:30:41htgoebellinkissue33128 messages
2018-03-23 23:30:41htgoebelcreate