diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-09-29 18:34:43 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-09-29 18:34:43 (GMT) |
commit | cff1c6f66555ced39ab8c5cff61a0872015dee7a (patch) | |
tree | 0ec5077d7078aa578dfdad4eee499f77047607ae /Doc | |
parent | 14fb44e1bab9db128770f1d91d244916a669e7c3 (diff) | |
download | cpython-cff1c6f66555ced39ab8c5cff61a0872015dee7a.zip cpython-cff1c6f66555ced39ab8c5cff61a0872015dee7a.tar.gz cpython-cff1c6f66555ced39ab8c5cff61a0872015dee7a.tar.bz2 |
Clarify description of who needs to worry about importlib changes.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index a84d44d..d846e25 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -616,11 +616,10 @@ supporting Python 3.3 to use, helping to end any VM-specific deviations in import semantics. And finally it eases the maintenance of import, allowing for future growth to occur. -For the common user, this change should result in no visible change in -semantics. Any possible changes required in one's code to handle this change -should read the `Porting Python code`_ section of this document to see what -needs to be changed, but it will only affect those that currently manipulate -import or try calling it programmatically. +For the common user, there should be no visible change in semantics. For +those whose code currently manipulates import or calls import +programmatically, the code changes that might possibly be required are covered +in the `Porting Python code`_ section of this document. New APIs -------- |