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 maggyero
Recipients barry, brett.cannon, docs@python, eric.snow, maggyero, mdk, ncoghlan
Date 2018-11-07.15:13:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541603639.79.0.788709270274.issue35181@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like Barry Warsaw has not been fully updated the documentation after making the __spec__.loader attribute match with the __loader__ attribute, and the __spec__.file attribute match with the __file__ attribute for namespace packages.

Here is a pull request to update the library documentation of importlib (your first link [1]) with the current Barry's implementation:
https://github.com/python/cpython/pull/10016

Here is another pull request to update the reference documentation of the import system (your second link [2], but for a different paragraph, as I think the "To indicate to the import machinery that the spec represents a namespace portion the path entry finder sets “loader” on the spec to None" sentence is correct, since the `_bootstrap.ModuleSpec.loader` attribute of a namespace package remains `None` until the call to the `importlib._bootstrap._init_module_attrs` function):
https://github.com/python/cpython/pull/10376
History
Date User Action Args
2018-11-07 15:13:59maggyerosetrecipients: + maggyero, barry, brett.cannon, ncoghlan, docs@python, eric.snow, mdk
2018-11-07 15:13:59maggyerosetmessageid: <1541603639.79.0.788709270274.issue35181@psf.upfronthosting.co.za>
2018-11-07 15:13:59maggyerolinkissue35181 messages
2018-11-07 15:13:59maggyerocreate