diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-06-21 01:20:20 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-06-21 01:20:20 (GMT) |
commit | f862dc53e873e6fd655aa2872cc0081ab8d43e91 (patch) | |
tree | e625aebedf9af4a816450a9f25d871428ed893e9 /Doc/library/imp.rst | |
parent | 854ffcb6f34222c19b3514bb71381ab706777e80 (diff) | |
parent | 1d7d580d0edc2884a32a8592f2f3a098d8397740 (diff) | |
download | cpython-f862dc53e873e6fd655aa2872cc0081ab8d43e91.zip cpython-f862dc53e873e6fd655aa2872cc0081ab8d43e91.tar.gz cpython-f862dc53e873e6fd655aa2872cc0081ab8d43e91.tar.bz2 |
Merge from 3.3
Diffstat (limited to 'Doc/library/imp.rst')
-rw-r--r-- | Doc/library/imp.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 08e80ab..5253e69 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -165,7 +165,7 @@ This module provides an interface to the mechanisms used to implement the cache = {} It is legal though generally not very useful to reload built-in or dynamically - loaded modules, except for :mod:`sys`, :mod:`__main__` and :mod:`__builtin__`. + loaded modules, except for :mod:`sys`, :mod:`__main__` and :mod:`builtins`. In many cases, however, extension modules are not designed to be initialized more than once, and may fail in arbitrary ways when reloaded. |