changeset: 101541:0177af33ce76 parent: 101539:fb965ee44d5e parent: 101540:6f50c04e4a1e user: Eric Snow date: Sat May 28 11:08:20 2016 -0700 files: Doc/library/importlib.rst Misc/NEWS description: Issue #27147: Mention PEP 420 in the importlib docs. diff -r fb965ee44d5e -r 0177af33ce76 Doc/library/importlib.rst --- a/Doc/library/importlib.rst Sat May 28 14:48:19 2016 +0300 +++ b/Doc/library/importlib.rst Sat May 28 11:08:20 2016 -0700 @@ -52,6 +52,9 @@ :pep:`366` Main module explicit relative imports + :pep:`420` + Implicit namespace packages + :pep:`451` A ModuleSpec Type for the Import System diff -r fb965ee44d5e -r 0177af33ce76 Misc/NEWS --- a/Misc/NEWS Sat May 28 14:48:19 2016 +0300 +++ b/Misc/NEWS Sat May 28 11:08:20 2016 -0700 @@ -105,6 +105,8 @@ - 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.