Lichen

Annotated pyparser/consts.py

784:7a592926e9e4
2017-03-26 Paul Boddie Use item access methods directly instead of invoking operator functions.
paul@437 1
"""
paul@437 2
Various flags used during the compilation process.
paul@437 3
"""
paul@437 4
paul@437 5
PyCF_SOURCE_IS_UTF8 = 0x0100
paul@437 6
PyCF_DONT_IMPLY_DEDENT = 0x0200
paul@437 7
PyCF_ONLY_AST = 0x0400
paul@437 8
PyCF_ACCEPT_NULL_BYTES = 0x10000000   # PyPy only, for compile()