diff options
author | bquinlan <brian@sweetapp.com> | 2013-10-25 17:51:18 (GMT) |
---|---|---|
committer | bquinlan <brian@sweetapp.com> | 2013-10-25 17:51:18 (GMT) |
commit | c00cf53d84837a4c12e6d7b63e36b0260de06b1f (patch) | |
tree | 5dadde40619ba2ff8d704d0be56e8d72dcccf370 | |
parent | 7749cb5c359eca595f4d4981ed98cdbe054f3586 (diff) | |
parent | 50aa32409bd181d8739d05515f14aa5d2d0d7f10 (diff) | |
download | cpython-c00cf53d84837a4c12e6d7b63e36b0260de06b1f.zip cpython-c00cf53d84837a4c12e6d7b63e36b0260de06b1f.tar.gz cpython-c00cf53d84837a4c12e6d7b63e36b0260de06b1f.tar.bz2 |
Merge.
-rw-r--r-- | Doc/library/imp.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 5253e69..6647b9e 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -179,6 +179,10 @@ This module provides an interface to the mechanisms used to implement the the class does not affect the method definitions of the instances --- they continue to use the old class definition. The same is true for derived classes. + .. versionchanged:: 3.3 + Relies on both ``__name__`` and ``__loader__`` being defined on the module + being reloaded instead of just ``__name__``. + .. deprecated:: 3.4 Use :func:`importlib.reload` instead. |