Why is this the output of this python program?
- by Andrew Moffat
Someone from #python suggested that it's searching for module "herpaderp" and finding all the ones listed as its searching. If this is the case, why doesn't it list every module on my system before raising ImportError? Can someone shed some light on what's happening here?
import sys
class TempLoader(object):
def __init__(self,…