diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-03-16 22:30:11 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-03-16 22:30:11 (GMT) |
commit | 44c5481941fb9595c23d796b09dd9c34e0357fa5 (patch) | |
tree | f62d0e17cb151772862ffbc88c436beb40571a16 /Doc | |
parent | 7f157864a0665d98e3adbf197798b1761a217f8b (diff) | |
download | cpython-44c5481941fb9595c23d796b09dd9c34e0357fa5.zip cpython-44c5481941fb9595c23d796b09dd9c34e0357fa5.tar.gz cpython-44c5481941fb9595c23d796b09dd9c34e0357fa5.tar.bz2 |
Fix a doc typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/importlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index caf0e78..34e6b2a 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -121,7 +121,7 @@ are also provided to help in implementing the core ABCs. If the requested module is already exists in :data:`sys.modules`, that module should be used and reloaded. Otherwise a new module is to be created by the loader and inserted into - :data:`sys.modules`before any loading begins to prevent recursion from + :data:`sys.modules` before any loading begins to prevent recursion from the import. If the loader inserted into a module and the load fails it must be removed by the loader from :data:`sys.modules`; modules already in :data:`sys.modules` before the loader began execution should be left |