diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-06-21 01:17:41 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-06-21 01:17:41 (GMT) |
commit | 1d7d580d0edc2884a32a8592f2f3a098d8397740 (patch) | |
tree | b54fde4caedb3e05110a2174d384e4ab0a4a3434 /Doc/library/imp.rst | |
parent | 2151fc64161a5a773bd31ec756815bacd210b196 (diff) | |
download | cpython-1d7d580d0edc2884a32a8592f2f3a098d8397740.zip cpython-1d7d580d0edc2884a32a8592f2f3a098d8397740.tar.gz cpython-1d7d580d0edc2884a32a8592f2f3a098d8397740.tar.bz2 |
Closes #18272: use 'builtins' for 3.3 instead of __builtin__
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 7d4bf4f..af98489 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -158,7 +158,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. |