summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-23 02:06:13 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-23 02:06:13 (GMT)
commitf85b2a8dc7eabb35598dffbc6a80c393eb68138e (patch)
tree2680cb2bb005a16d63bc33e8c5512daaae086c88 /Doc
parente9b74d45d3262258fd214fc0a664cab2ebd7efa5 (diff)
downloadcpython-f85b2a8dc7eabb35598dffbc6a80c393eb68138e.zip
cpython-f85b2a8dc7eabb35598dffbc6a80c393eb68138e.tar.gz
cpython-f85b2a8dc7eabb35598dffbc6a80c393eb68138e.tar.bz2
Reflow 'modulespec' paragraphs.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst19
1 files changed, 9 insertions, 10 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 616de2d..a084d55 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -282,20 +282,19 @@ in :ref:`binary-transforms` and :ref:`text-transforms`.
PEP 451: A ModuleSpec Type for the Import System
------------------------------------------------
-:pep:`451` provides an encapsulation of the information about a module
-that the import machinery will use to load it (that is, a module specification).
-This helps simplify both the import implementation and several
-import-related APIs. The change is also a stepping stone for `several
-future import-related improvements`__.
+:pep:`451` provides an encapsulation of the information about a module that the
+import machinery will use to load it (that is, a module specification). This
+helps simplify both the import implementation and several import-related APIs.
+The change is also a stepping stone for `several future import-related
+improvements`__.
__ https://mail.python.org/pipermail/python-dev/2013-November/130111.html
The public-facing changes from the PEP are entirely backward-compatible.
-Furthermore, they should be transparent to everyone but importer
-authors. Key finder and loader methods have been deprecated, but they
-will continue working. New importers should use the new methods
-described in the PEP. Existing importers should be updated to implement
-the new methods.
+Furthermore, they should be transparent to everyone but importer authors. Key
+finder and loader methods have been deprecated, but they will continue working.
+New importers should use the new methods described in the PEP. Existing
+importers should be updated to implement the new methods.
Other Language Changes