427 # search the path for the module |
427 # search the path for the module |
428 path = [] if path is None else path[:] |
428 path = [] if path is None else path[:] |
429 f = None |
429 f = None |
430 if f is None: |
430 if f is None: |
431 fullpath = path[:] + sys.path[:] |
431 fullpath = path[:] + sys.path[:] |
432 f, file, (suff, mode, type) = ClassBrowsers.find_module( |
432 f, file, (_suff, _mode, type) = ClassBrowsers.find_module( |
433 module, fullpath, isTypeFile |
433 module, fullpath, isTypeFile |
434 ) |
434 ) |
435 if f: |
435 if f: |
436 f.close() |
436 f.close() |
437 if type not in SUPPORTED_TYPES: |
437 if type not in SUPPORTED_TYPES: |