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 serhiy.storchaka
Recipients brett.cannon, chris.jerdonek, eric.araujo, eric.snow, jaraco, jayyin11043, ncoghlan, ncohen, python-dev, serhiy.storchaka
Date 2022-03-26.11:01:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1648292518.82.0.444164723282.issue32642@roundup.psfhosted.org>
In-reply-to
Content
pkgutil just skips non-string elements in sys.path.

    for dir in search_path:
        if not isinstance(dir, str):
            continue
History
Date User Action Args
2022-03-26 11:01:58serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, jaraco, ncoghlan, eric.araujo, chris.jerdonek, python-dev, eric.snow, jayyin11043, ncohen
2022-03-26 11:01:58serhiy.storchakasetmessageid: <1648292518.82.0.444164723282.issue32642@roundup.psfhosted.org>
2022-03-26 11:01:58serhiy.storchakalinkissue32642 messages
2022-03-26 11:01:58serhiy.storchakacreate