[issue19392] document importlib.reload() requires __loader__ to be defined

2013-10-25 Thread Brett Cannon
Brett Cannon added the comment: importlib.reload() already states that the loader is reused, so this only required imp.reload() to be updated. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue19392] document importlib.reload() requires __loader__ to be defined

2013-10-25 Thread Roundup Robot
Roundup Robot added the comment: 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 -- nosy: +python-dev ___ Python tracker

[issue19392] document importlib.reload() requires __loader__ to be defined

2013-10-25 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue19392] document importlib.reload() requires __loader__ to be defined

2013-10-25 Thread Brett Cannon
New submission from Brett Cannon: Make sure importlib.reload() (and by extension imp.reload()) mention that __loader__ must be defined as well as __name__. -- assignee: docs@python components: Documentation messages: 201259 nosy: brett.cannon, docs@python priority: normal severity: norm