importer: Don't respond to non-.py[co] imports.

wip-fakessh-exit-status
David Wilson 7 years ago
parent bcae62c682
commit 1be10575a1

@ -416,7 +416,12 @@ class ModuleFinder(object):
if 'six.moves' in fullname:
# TODO: causes inspect.getsource() to explode.
return
return None, None, None
modpath = getattr(sys.modules[fullname], '__file__', '')
if not modpath.rstrip('co').endswith('.py'):
# Probably a native module.
return None, None, None
is_pkg = hasattr(sys.modules[fullname], '__path__')
try:

Loading…
Cancel
Save