summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/importlib.rst3
-rw-r--r--Misc/NEWS2
2 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index 1a1348f..3eb2e8a 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -52,6 +52,9 @@ generically as an :term:`importer`) to participate in the import process.
:pep:`366`
Main module explicit relative imports
+ :pep:`420`
+ Implicit namespace packages
+
:pep:`451`
A ModuleSpec Type for the Import System
diff --git a/Misc/NEWS b/Misc/NEWS
index ef6ca92..ce051d5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -105,6 +105,8 @@ Core and Builtins
- Issue #27138: Fix the doc comment for FileFinder.find_spec().
+- Issue #27147: Mention PEP 420 in the importlib docs.
+
- Issue #25339: PYTHONIOENCODING now has priority over locale in setting the
error handler for stdin and stdout.