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.

classification
Title: Document importlib._bootstrap.NamespaceLoader
Type: Stage: resolved
Components: Documentation Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: barry, brett.cannon, docs@python, eric.smith, eric.snow, terry.reedy
Priority: normal Keywords: easy

Created on 2013-05-25 15:45 by brett.cannon, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg189969 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2013-05-25 15:45
Is there a reason NamespaceLoader is undocumented?
msg190109 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2013-05-26 19:50
No reason I can think of, other than it never occurred to me to do it.
msg404637 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-10-21 19:54
Close this?  As near as I can tell, there is currectly no doc for importlib._bootstrap ('_bootstrap' neither in Index nor importlib doc).  Also, it does not currently contain NamespaceLoader (not in dir(importlib._bootstrap).
msg404639 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2021-10-21 19:59
See bpo-35673.  Also, it is actually in importlib._bootstrap_external.
msg404644 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-10-21 20:13
_bootstrap_external also appears to be undocumented.  It does has _NamespaceLoader among its 77 entries.
msg404668 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2021-10-21 21:30
This was taken care of by https://github.com/python/cpython/pull/29049/.
History
Date User Action Args
2022-04-11 14:57:46adminsetgithub: 62256
2021-10-21 21:30:41brett.cannonsetstatus: open -> closed
resolution: fixed
messages: + msg404668

stage: needs patch -> resolved
2021-10-21 20:13:50terry.reedysetmessages: + msg404644
2021-10-21 19:59:58eric.snowsetnosy: + eric.snow
messages: + msg404639
2021-10-21 19:54:31terry.reedysetnosy: + terry.reedy
messages: + msg404637
2013-06-22 00:44:25brett.cannonsetkeywords: + easy, - 3.3regression
assignee: barry -> docs@python

nosy: + docs@python
versions: + Python 3.4
2013-05-26 19:50:04eric.smithsetmessages: + msg190109
2013-05-25 15:45:51brett.cannoncreate