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: Missing import in modulefinder.py
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, brett.cannon, python-dev, theller
Priority: normal Keywords: patch

Created on 2012-12-22 19:45 by theller, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue16752.diff berker.peksag, 2012-12-22 22:03 review
Messages (4)
msg177951 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2012-12-22 19:45
It seems the statement
    import importlib
is missing in 3.3's modulefinder.py
msg177957 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2012-12-22 22:03
Here is a patch with a test case.
msg177961 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-23 00:38
New changeset 1b9b7cb136db by Brett Cannon in branch '3.3':
Issue #16752: Add a missing import to modulefinder.
http://hg.python.org/cpython/rev/1b9b7cb136db
msg177962 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012-12-23 00:40
This was committed in default through rev d22e9e3a3326 but there was some error in the connection from hg.python.org and so it didn't get tacked on.

Thanks to Thomas for the report and Berker for the patch!
History
Date User Action Args
2022-04-11 14:57:39adminsetgithub: 60956
2012-12-23 00:40:51brett.cannonsetstatus: open -> closed

nosy: + brett.cannon
messages: + msg177962

resolution: fixed
stage: resolved
2012-12-23 00:38:41python-devsetnosy: + python-dev
messages: + msg177961
2012-12-22 22:03:54berker.peksagsetfiles: + issue16752.diff
versions: + Python 3.4
nosy: + berker.peksag

messages: + msg177957

keywords: + patch
2012-12-22 19:45:48thellercreate