Searched refs:inpackage (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Lib/ |
D | pyclbr.py | 122 def _readmodule(module, path, inpackage=None): argument 131 if inpackage is not None: 132 fullmodule = "%s.%s" % (inpackage, module) 144 if module in sys.builtin_module_names and inpackage is None: 153 parent = _readmodule(package, path, inpackage) 154 if inpackage is not None: 155 package = "%s.%s" % (inpackage, package) 162 if inpackage is not None: 183 return _create_tree(fullmodule, path, fname, source, tree, inpackage) 187 def __init__(self, module, path, file, tree, inpackage): argument [all …]
|