Issue 19392: document importlib.reload() requires loader to be defined (original) (raw)

Issue19392

Created on 2013-10-25 17:00 by brett.cannon, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg201259 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2013-10-25 17:00
Make sure importlib.reload() (and by extension imp.reload()) mention that __loader__ must be defined as well as __name__.
msg201264 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-25 17:49
New changeset f575f6298eb1 by Brett Cannon in branch '3.3': Issue #19392: Document that imp.reload() now relies on __loader__ http://hg.python.org/cpython/rev/f575f6298eb1
msg201267 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2013-10-25 17:53
importlib.reload() already states that the loader is reused, so this only required imp.reload() to be updated.
History
Date User Action Args
2022-04-11 14:57:52 admin set github: 63591
2013-10-25 17:53:56 brett.cannon set status: open -> closedresolution: fixedmessages: + stage: resolved
2013-10-25 17:49:32 python-dev set nosy: + python-devmessages: +
2013-10-25 17:24:37 eric.snow set nosy: + eric.snow
2013-10-25 17:00:54 brett.cannon create