changeset: 97251:33dfbb293892 branch: 3.4 parent: 97247:99550a01fa6e user: Robert Collins date: Wed Aug 05 08:20:53 2015 +1200 files: Doc/library/importlib.rst Misc/ACKS Misc/NEWS description: Issue #20769: Improve reload() docs. Patch by Dorian Pula. diff -r 99550a01fa6e -r 33dfbb293892 Doc/library/importlib.rst --- a/Doc/library/importlib.rst Tue Aug 04 15:56:33 2015 -0400 +++ b/Doc/library/importlib.rst Wed Aug 05 08:20:53 2015 +1200 @@ -166,11 +166,11 @@ except NameError: cache = {} - It is legal though generally not very useful to reload built-in or - dynamically loaded modules (this is not true for e.g. :mod:`sys`, - :mod:`__main__`, :mod:`builtins` and other key modules where reloading is - frowned upon). In many cases, however, extension modules are not designed to - be initialized more than once, and may fail in arbitrary ways when reloaded. + It is generally not very useful to reload built-in or dynamically loaded + modules. Reloading :mod:`sys`, :mod:`__main__`, :mod:`builtins` and other + key modules is not recommended. In many cases extension modules are not + designed to be initialized more than once, and may fail in arbitrary ways + when reloaded. If a module imports objects from another module using :keyword:`from` ... :keyword:`import` ..., calling :func:`reload` for the other module does not diff -r 99550a01fa6e -r 33dfbb293892 Misc/ACKS --- a/Misc/ACKS Tue Aug 04 15:56:33 2015 -0400 +++ b/Misc/ACKS Wed Aug 05 08:20:53 2015 +1200 @@ -1098,6 +1098,7 @@ Donovan Preston Paul Price Iuliia Proskurnia +Dorian Pula Jyrki Pulliainen Steve Purcell Eduardo Pérez diff -r 99550a01fa6e -r 33dfbb293892 Misc/NEWS --- a/Misc/NEWS Tue Aug 04 15:56:33 2015 -0400 +++ b/Misc/NEWS Wed Aug 05 08:20:53 2015 +1200 @@ -408,6 +408,8 @@ Documentation ------------- +- Issue #20769: Improve reload() docs. Patch by Dorian Pula. + - Issue #23589: Remove duplicate sentence from the FAQ. Patch by Yongzhi Pan. - Issue #24729: Correct IO tutorial to match implementation regarding