Home
last modified time | relevance | path

Searched refs:CO_FUTURE_DIVISION (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/
D__future__.py68 CO_FUTURE_DIVISION = 0x2000 # division variable
112 CO_FUTURE_DIVISION)
/external/python/cpython2/Lib/compiler/
Dconsts.py20 CO_FUTURE_DIVISION = 0x2000 variable
Dpycodegen.py13 CO_NESTED, CO_GENERATOR, CO_FUTURE_DIVISION,
216 self.graph.setFlag(CO_FUTURE_DIVISION)
/external/python/cpython2/Include/
Dcode.h50 #define CO_FUTURE_DIVISION 0x2000 macro
Dpythonrun.h10 #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \
/external/python/cpython2/Python/
Dfuture.c33 ff->ff_features |= CO_FUTURE_DIVISION; in future_check_features()
Dcompile.c2218 if (c->c_flags && c->c_flags->cf_flags & CO_FUTURE_DIVISION) in binop()
2285 if (c->c_flags && c->c_flags->cf_flags & CO_FUTURE_DIVISION) in inplace_binop()
/external/python/cpython2/Modules/
Dmain.c350 cf.cf_flags |= CO_FUTURE_DIVISION; in Py_Main()
/external/python/cpython2/Doc/c-api/
Dveryhigh.rst319 .. c:var:: int CO_FUTURE_DIVISION