commit | 73b969ec70ff4d422bff34d63cfb220cfac96779 | [log] [tgz] |
---|---|---|
author | Brett Cannon <brett@python.org> | Sat Dec 22 19:34:21 2012 -0500 |
committer | Brett Cannon <brett@python.org> | Sat Dec 22 19:34:21 2012 -0500 |
tree | fce097ec73dc97d9a58e9f695245203849cd0165 | |
parent | f03eee12b405347189df3915b6dbd845c2690b77 [diff] [blame] |
Issue #16752: Add a missing import to modulefinder. Also fix Misc/ACKS to put part of it back in alphabetical order and remove some duplicate names. Patch by Berker Peksag.
diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py index 683e305..f90a432 100644 --- a/Lib/modulefinder.py +++ b/Lib/modulefinder.py
@@ -2,6 +2,7 @@ import dis import imp +import importlib.machinery import marshal import os import sys