Home
last modified time | relevance | path

Searched refs:IS_PACKAGE (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dzipimport.c10 #define IS_PACKAGE 0x2 macro
23 {"/__init__.pyc", IS_PACKAGE | IS_BYTECODE},
24 {"/__init__.pyo", IS_PACKAGE | IS_BYTECODE},
25 {"/__init__.py", IS_PACKAGE | IS_SOURCE},
273 if (zso->type & IS_PACKAGE) in get_module_info()
1256 int ispackage = zso->type & IS_PACKAGE; in get_module_code()
/external/python/cpython3/Modules/
Dzipimport.c12 #define IS_PACKAGE 0x2 macro
29 {"/__init__.pyc", IS_PACKAGE | IS_BYTECODE},
30 {"/__init__.py", IS_PACKAGE | IS_SOURCE},
351 if (zso->type & IS_PACKAGE) in get_module_info()
1559 int ispackage = zso->type & IS_PACKAGE; in get_module_code()