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: Don't duplicate _verbose_message in importlib._bootstrap and _bootstrap_external
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Arfrever, brett.cannon, eric.snow, python-dev
Priority: normal Keywords:

Created on 2015-09-19 23:02 by brett.cannon, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg251124 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2015-09-19 23:02
For some reason _verbose_message() is defined in both _bootstrap and _bootstrap_external. Probably should only have it in _bootstrap, unless Eric has a reason he duplicated the code.
msg251309 - (view) Author: Eric Snow (eric.snow) * (Python committer) Date: 2015-09-22 12:00
I'm fairly sure this was just an oversight on my part.
msg251602 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-09-25 20:05
New changeset 1266e98fd04c by Brett Cannon in branch 'default':
Issue #25186: Remove duplicated function from importlib._bootstrap_external
https://hg.python.org/cpython/rev/1266e98fd04c
History
Date User Action Args
2022-04-11 14:58:21adminsetgithub: 69373
2015-09-25 20:05:38brett.cannonsetstatus: open -> closed
resolution: fixed
stage: resolved
2015-09-25 20:05:21python-devsetnosy: + python-dev
messages: + msg251602
2015-09-22 12:00:08eric.snowsetmessages: + msg251309
2015-09-21 12:06:00Arfreversetnosy: + Arfrever
2015-09-19 23:02:11brett.cannoncreate