mirror of https://github.com/python/cpython.git
Suppress warning print statements about modules not found, they are
confusing to end users of IDEs.
This commit is contained in:
parent
7bb11d68bf
commit
9f612f9c5a
|
@ -297,7 +297,8 @@ def readmodule_ex(module, path=[], inpackage=0):
|
||||||
# recursively read the imported module
|
# recursively read the imported module
|
||||||
d = readmodule(n, path, inpackage)
|
d = readmodule(n, path, inpackage)
|
||||||
except:
|
except:
|
||||||
print 'module', n, 'not found'
|
##print 'module', n, 'not found'
|
||||||
|
pass
|
||||||
|
|
||||||
elif m.start("ImportFrom") >= 0:
|
elif m.start("ImportFrom") >= 0:
|
||||||
# from module import stuff
|
# from module import stuff
|
||||||
|
@ -307,7 +308,7 @@ def readmodule_ex(module, path=[], inpackage=0):
|
||||||
# recursively read the imported module
|
# recursively read the imported module
|
||||||
d = readmodule(mod, path, inpackage)
|
d = readmodule(mod, path, inpackage)
|
||||||
except:
|
except:
|
||||||
print 'module', mod, 'not found'
|
##print 'module', mod, 'not found'
|
||||||
continue
|
continue
|
||||||
# add any classes that were defined in the
|
# add any classes that were defined in the
|
||||||
# imported module to our name space if they
|
# imported module to our name space if they
|
||||||
|
|
Loading…
Reference in New Issue