diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-06 21:07:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 21:07:34 (GMT) |
commit | bc03bf42e70b111e4125bc6d08cd5943f8560c64 (patch) | |
tree | 997af3bcb9f447a6c7e73007326ce05a86e9a55f | |
parent | b7487dff302767bd2aed92df04d440f15c2eca14 (diff) | |
download | cpython-bc03bf42e70b111e4125bc6d08cd5943f8560c64.zip cpython-bc03bf42e70b111e4125bc6d08cd5943f8560c64.tar.gz cpython-bc03bf42e70b111e4125bc6d08cd5943f8560c64.tar.bz2 |
gh-97850: Remove the open issues section from the import reference (GH-97935)
Remove the open issues section from the import reference
Tracking in https://github.com/python/cpython/issues/97850 instead.
(cherry picked from commit f8edc6ff531bb98858185857513371f14519ed1d)
Co-authored-by: Brett Cannon <brett@python.org>
-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 92ae9fd..3837975 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -1015,25 +1015,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 ========== |