From: Just van Rossum Date: Thu, 4 Nov 1999 10:28:00 +0000 (+0000) Subject: - changed the API of process() so it will return a list of missing modules instead... X-Git-Tag: v1.6a1~771 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ff52764efbeb7e88dd96de2ef3209b17ab5c5f6;p=thirdparty%2FPython%2Fcpython.git - changed the API of process() so it will return a list of missing modules instead of raising an exception. - minor cleanups (jvr) --- diff --git a/Mac/Tools/macfreeze/macmodulefinder.py b/Mac/Tools/macfreeze/macmodulefinder.py index 9897dcff5319..e89b9903e7a5 100644 --- a/Mac/Tools/macfreeze/macmodulefinder.py +++ b/Mac/Tools/macfreeze/macmodulefinder.py @@ -48,8 +48,12 @@ class ModuleFinder(modulefinder.ModuleFinder): self.modules[fqname] = m = Module(fqname) return m -def process(program, modules=[], module_files = [], debug=0): - error = [] +def process(program, modules=None, module_files=None, debug=0): + if modules is None: + modules = [] + if module_files is None: + module_files = [] + missing = [] # # Add the standard modules needed for startup # @@ -89,7 +93,7 @@ def process(program, modules=[], module_files = [], debug=0): if not m in maymiss: if debug > 0: print 'Missing', m - error.append(m) + missing.append(m) # # Warn the user about unused builtins # @@ -103,6 +107,4 @@ def process(program, modules=[], module_files = [], debug=0): # XXXX Can this happen? if debug > 0: print 'Conflict', m - if error: - raise Missing, error - return module_dict + return module_dict, missing