diff options
author | Brett Cannon <brett@python.org> | 2012-12-22 19:34:21 -0500 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-12-22 19:34:21 -0500 |
commit | 73b969ec70ff4d422bff34d63cfb220cfac96779 (patch) | |
tree | fce097ec73dc97d9a58e9f695245203849cd0165 /Lib/modulefinder.py | |
parent | Issue #16745: The gcc visibility pragma is buggy on OpenIndiana and NetBSD. (diff) | |
download | cpython-73b969ec70ff4d422bff34d63cfb220cfac96779.tar.gz cpython-73b969ec70ff4d422bff34d63cfb220cfac96779.tar.bz2 cpython-73b969ec70ff4d422bff34d63cfb220cfac96779.zip |
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.
Diffstat (limited to 'Lib/modulefinder.py')
-rw-r--r-- | Lib/modulefinder.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py index 683e3054964..f90a4327e67 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 |