diff options
-rw-r--r-- | Lib/pyclbr.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/pyclbr.py b/Lib/pyclbr.py index 9e8af357564..de3fedce114 100644 --- a/Lib/pyclbr.py +++ b/Lib/pyclbr.py @@ -297,7 +297,8 @@ def readmodule_ex(module, path=[], inpackage=0): # recursively read the imported module d = readmodule(n, path, inpackage) except: - print 'module', n, 'not found' + ##print 'module', n, 'not found' + pass elif m.start("ImportFrom") >= 0: # from module import stuff @@ -307,7 +308,7 @@ def readmodule_ex(module, path=[], inpackage=0): # recursively read the imported module d = readmodule(mod, path, inpackage) except: - print 'module', mod, 'not found' + ##print 'module', mod, 'not found' continue # add any classes that were defined in the # imported module to our name space if they |