This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Import docs reference the deprecated imp.reload
Type: Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, eric.araujo, ezio.melotti, georg.brandl, petr.viktorin, python-dev
Priority: normal Keywords: patch

Created on 2015-07-25 08:49 by petr.viktorin, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
docs.patch petr.viktorin, 2015-07-25 08:49
Messages (3)
msg247319 - (view) Author: Petr Viktorin (petr.viktorin) * (Python committer) Date: 2015-07-25 08:49
In 3.4, `imp.reload` was deprecated in favor of `importlib.reload`.

https://docs.python.org/3/library/imp.html
msg247331 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-07-25 10:03
New changeset 6c713dcce26a by Berker Peksag in branch '3.4':
Issue #24713: Use importlib.reload() in import reference document.
https://hg.python.org/cpython/rev/6c713dcce26a

New changeset afb12ebd96df by Berker Peksag in branch '3.5':
Issue #24713: Use importlib.reload() in import reference document.
https://hg.python.org/cpython/rev/afb12ebd96df

New changeset 5fb7d3238248 by Berker Peksag in branch 'default':
Issue #24713: Use importlib.reload() in import reference document.
https://hg.python.org/cpython/rev/5fb7d3238248
msg247332 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-07-25 10:06
Thanks for the report and the patch, Petr.
History
Date User Action Args
2022-04-11 14:58:19adminsetgithub: 68901
2015-07-25 10:06:43berker.peksagsetstatus: open -> closed

nosy: + berker.peksag
messages: + msg247332

resolution: fixed
stage: resolved
2015-07-25 10:03:59python-devsetnosy: + python-dev
messages: + msg247331
2015-07-25 08:49:06petr.viktorincreate