Home
last modified time | relevance | path

Searched refs:CO_FUTURE_BARRY_AS_BDFL (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/
D__future__.py76 CO_FUTURE_BARRY_AS_BDFL = 0x40000 variable
138 CO_FUTURE_BARRY_AS_BDFL)
/external/python/cpython3/Lib/test/
Dtest_flufl.py9 __future__.CO_FUTURE_BARRY_AS_BDFL)
12 __future__.CO_FUTURE_BARRY_AS_BDFL)
/external/python/cpython3/Parser/
Dparsetok.c198 ps->p_flags |= CO_FUTURE_BARRY_AS_BDFL; in parsetok()
240 if (!(ps->p_flags & CO_FUTURE_BARRY_AS_BDFL) && in parsetok()
246 else if ((ps->p_flags & CO_FUTURE_BARRY_AS_BDFL) && in parsetok()
/external/python/cpython3/Include/
Dcompile.h18 CO_FUTURE_UNICODE_LITERALS | CO_FUTURE_BARRY_AS_BDFL | \
Dcode.h83 #define CO_FUTURE_BARRY_AS_BDFL 0x40000 macro
/external/python/cpython3/Python/
Dfuture.c42 ff->ff_features |= CO_FUTURE_BARRY_AS_BDFL; in future_check_features()
Dpythonrun.c159 if (flags->cf_flags & CO_FUTURE_BARRY_AS_BDFL) in PARSER_FLAGS()