]> granicus.if.org Git - python/commitdiff
Issue #27147: Mention PEP 420 in the importlib docs.
authorEric Snow <ericsnowcurrently@gmail.com>
Sat, 28 May 2016 17:56:53 +0000 (11:56 -0600)
committerEric Snow <ericsnowcurrently@gmail.com>
Sat, 28 May 2016 17:56:53 +0000 (11:56 -0600)
Doc/library/importlib.rst
Misc/NEWS

index 43b34e9005c95df63f8fbd99a48143edd8540590..953e21b3a3569c039a95763b4a827fe768b0ed32 100644 (file)
@@ -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
 
index 1d1cca8d704ad21ff7a93af509ede8a9313217c4..cd6323994cbcc545f5e48ca0286b7eb09be5a310 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -106,6 +106,8 @@ Core and Builtins
 
 - Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
 
+- Issue #27147: Mention PEP 420 in the importlib docs.
+
 - Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
   __getattr__.