src/eric7/Utilities/ClassBrowsers/pyclbr.py

branch
server
changeset 10704
27d21e5163b8
parent 10680
306373ccf8fd
parent 10692
9becf9ca115c
child 11090
f5f5f5803935
equal deleted inserted replaced
10680:306373ccf8fd 10704:27d21e5163b8
433 file = fsInterface.join(searchPath[0], module) 433 file = fsInterface.join(searchPath[0], module)
434 else: 434 else:
435 # search the path for the module 435 # search the path for the module
436 searchPath = [] if searchPath is None else searchPath[:] 436 searchPath = [] if searchPath is None else searchPath[:]
437 fullpath = searchPath[:] + sys.path[:] 437 fullpath = searchPath[:] + sys.path[:]
438 f, file, (suff, mode, sourceType) = ClassBrowsers.find_module( 438 f, file, (_suff, mode, sourceType) = ClassBrowsers.find_module(
439 module, fullpath, isTypeFile 439 module, fullpath, isTypeFile
440 ) 440 )
441 if f: 441 if f:
442 f.close() 442 f.close()
443 443

eric ide

mercurial