Home
last modified time | relevance | path

Searched refs:ispackage (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/
Dzipimport.py196 code, ispackage, modpath = _get_module_code(self, fullname)
229 code, ispackage, modpath = _get_module_code(self, fullname)
284 code, ispackage, modpath = _get_module_code(self, fullname)
292 if ispackage:
373 for suffix, isbytecode, ispackage in _zip_searchorder:
376 return ispackage
743 for suffix, isbytecode, ispackage in _zip_searchorder:
766 return code, ispackage, modpath
Dpydoc.py318 def ispackage(path): function
656 name, path, ispackage, shadowed = modpkginfo
663 if ispackage:
/third_party/python/Python/
Dimport.c1145 int ispackage; in PyImport_ImportFrozenModuleObject() local
1159 ispackage = (size < 0); in PyImport_ImportFrozenModuleObject()
1160 if (ispackage) in PyImport_ImportFrozenModuleObject()
1171 if (ispackage) { in PyImport_ImportFrozenModuleObject()
/third_party/python/Lib/test/
Dtest_pydoc.py748 self.assertFalse(pydoc.ispackage(test_dir))
754 self.assertTrue(pydoc.ispackage(test_dir))