diff options
author | Brett Cannon <brett@python.org> | 2022-10-06 21:01:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 21:01:06 (GMT) |
commit | f8edc6ff531bb98858185857513371f14519ed1d (patch) | |
tree | 2d7fafcd1d4b05cec0ab9b2b1343027c4c7876c3 /Doc/reference | |
parent | 993de50e44ce275ad96857e73e144c556eea68b0 (diff) | |
download | cpython-f8edc6ff531bb98858185857513371f14519ed1d.zip cpython-f8edc6ff531bb98858185857513371f14519ed1d.tar.gz cpython-f8edc6ff531bb98858185857513371f14519ed1d.tar.bz2 |
gh-97850: Remove the open issues section from the import reference (#97935)
Remove the open issues section from the import reference
Tracking in https://github.com/python/cpython/issues/97850 instead.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/import.rst | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 58f4ef8..b7a53cd 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -1025,25 +1025,6 @@ and ``__main__.__spec__`` is set accordingly, they're still considered to populate the ``__main__`` namespace, and not during normal import. -Open issues -=========== - -XXX It would be really nice to have a diagram. - -XXX * (import_machinery.rst) how about a section devoted just to the -attributes of modules and packages, perhaps expanding upon or supplanting the -related entries in the data model reference page? - -XXX runpy, pkgutil, et al in the library manual should all get "See Also" -links at the top pointing to the new import system section. - -XXX Add more explanation regarding the different ways in which -``__main__`` is initialized? - -XXX Add more info on ``__main__`` quirks/pitfalls (i.e. copy from -:pep:`395`). - - References ========== |