Home
last modified time | relevance | path

Searched refs:CO_FUTURE_ABSOLUTE_IMPORT (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/
D__future__.py69 CO_FUTURE_ABSOLUTE_IMPORT = 0x4000 # perform absolute imports by default variable
116 CO_FUTURE_ABSOLUTE_IMPORT)
/external/python/cpython3/Lib/
D__future__.py72 CO_FUTURE_ABSOLUTE_IMPORT = 0x40000 # perform absolute imports by default variable
123 CO_FUTURE_ABSOLUTE_IMPORT)
/external/python/cpython3/Include/cpython/
Dcompile.h6 #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \
Dcode.h91 #define CO_FUTURE_ABSOLUTE_IMPORT 0x40000 /* do absolute imports by default */ macro
/external/python/cpython2/Include/
Dcode.h51 #define CO_FUTURE_ABSOLUTE_IMPORT 0x4000 /* do absolute imports by default */ macro
Dpythonrun.h10 #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \
/external/python/cpython2/Python/
Dfuture.c35 ff->ff_features |= CO_FUTURE_ABSOLUTE_IMPORT; in future_check_features()
Dcompile.c1926 if (c->c_flags && (c->c_flags->cf_flags & CO_FUTURE_ABSOLUTE_IMPORT)) in compiler_import()
1979 !(c->c_flags->cf_flags & CO_FUTURE_ABSOLUTE_IMPORT)) in compiler_from_import()