From: Eric Snow Date: Sat, 28 May 2016 17:56:53 +0000 (-0600) Subject: Issue #27147: Mention PEP 420 in the importlib docs. X-Git-Tag: v3.5.2rc1~104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=338502b307798e089d85e58f97f3d28922161c47;p=thirdparty%2FPython%2Fcpython.git Issue #27147: Mention PEP 420 in the importlib docs. --- diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 43b34e9005c9..953e21b3a356 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 1d1cca8d704a..cd6323994cbc 100644 --- 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__.