Lichen

pyparser/consts.py

437:051349b537b2
2017-01-08 Paul Boddie Added a modified version of pyparser (from PyPy) that provides parser module functionality without relying on CPython. Added licensing information for the pyparser and compiler packages.
     1 """     2 Various flags used during the compilation process.     3 """     4      5 PyCF_SOURCE_IS_UTF8 = 0x0100     6 PyCF_DONT_IMPLY_DEDENT = 0x0200     7 PyCF_ONLY_AST = 0x0400     8 PyCF_ACCEPT_NULL_BYTES = 0x10000000   # PyPy only, for compile()