• parser —- Access Python parse trees
    • Creating ST Objects
    • Converting ST Objects
    • Queries on ST Objects
    • Exceptions and Error Handling
    • ST Objects
    • Example: Emulation of compile()

    parser —- Access Python parse trees


    The parser module provides an interface to Python's internal parser andbyte-code compiler. The primary purpose for this interface is to allow Pythoncode to edit the parse tree of a Python expression and create executable codefrom this. This is better than trying to parse and modify an arbitrary Pythoncode fragment as a string because parsing is performed in a manner identical tothe code forming the application. It is also faster.

    注解

    From Python 2.5 onward, it's much more convenient to cut in at the AbstractSyntax Tree (AST) generation and compilation stage, using the astmodule.

    There are a few things to note about this module which are important to makinguse of the data structures created. This is not a tutorial on editing the parsetrees for Python code, but some examples of using the parser module arepresented.

    Most importantly, a good understanding of the Python grammar processed by theinternal parser is required. For full information on the language syntax, referto Python 语言参考. The parseritself is created from a grammar specification defined in the fileGrammar/Grammar in the standard Python distribution. The parse treesstored in the ST objects created by this module are the actual output from theinternal parser when created by the expr() or suite() functions,described below. The ST objects created by sequence2st() faithfullysimulate those structures. Be aware that the values of the sequences which areconsidered "correct" will vary from one version of Python to another as theformal grammar for the language is revised. However, transporting code from onePython version to another as source text will always allow correct parse treesto be created in the target version, with the only restriction being thatmigrating to an older version of the interpreter will not support more recentlanguage constructs. The parse trees are not typically compatible from oneversion to another, though source code has usually been forward-compatible withina major release series.

    Each element of the sequences returned by st2list() or st2tuple()has a simple form. Sequences representing non-terminal elements in the grammaralways have a length greater than one. The first element is an integer whichidentifies a production in the grammar. These integers are given symbolic namesin the C header file Include/graminit.h and the Python modulesymbol. Each additional element of the sequence represents a componentof the production as recognized in the input string: these are always sequenceswhich have the same form as the parent. An important aspect of this structurewhich should be noted is that keywords used to identify the parent node type,such as the keyword if in an if_stmt, are included in thenode tree without any special treatment. For example, the if keywordis represented by the tuple (1, 'if'), where 1 is the numeric valueassociated with all NAME tokens, including variable and function namesdefined by the user. In an alternate form returned when line number informationis requested, the same token might be represented as (1, 'if', 12), wherethe 12 represents the line number at which the terminal symbol was found.

    Terminal elements are represented in much the same way, but without any childelements and the addition of the source text which was identified. The exampleof the if keyword above is representative. The various types ofterminal symbols are defined in the C header file Include/token.h andthe Python module token.

    The ST objects are not required to support the functionality of this module,but are provided for three purposes: to allow an application to amortize thecost of processing complex parse trees, to provide a parse tree representationwhich conserves memory space when compared to the Python list or tuplerepresentation, and to ease the creation of additional modules in C whichmanipulate parse trees. A simple "wrapper" class may be created in Python tohide the use of ST objects.

    The parser module defines functions for a few distinct purposes. Themost important purposes are to create ST objects and to convert ST objects toother representations such as parse trees and compiled code objects, but thereare also functions which serve to query the type of parse tree represented by anST object.

    参见

    • Module symbol
    • Useful constants representing internal nodes of the parse tree.

    • Module token

    • Useful constants representing leaf nodes of the parse tree and functions fortesting node values.

    Creating ST Objects

    ST objects may be created from source code or from a parse tree. When creatingan ST object from source, different functions are used to create the 'eval'and 'exec' forms.

    • parser.expr(source)
    • The expr() function parses the parameter source as if it were an inputto compile(source, 'file.py', 'eval'). If the parse succeeds, an ST objectis created to hold the internal parse tree representation, otherwise anappropriate exception is raised.

    • parser.suite(source)

    • The suite() function parses the parameter source as if it were an inputto compile(source, 'file.py', 'exec'). If the parse succeeds, an ST objectis created to hold the internal parse tree representation, otherwise anappropriate exception is raised.

    • parser.sequence2st(sequence)

    • This function accepts a parse tree represented as a sequence and builds aninternal representation if possible. If it can validate that the tree conformsto the Python grammar and all nodes are valid node types in the host version ofPython, an ST object is created from the internal representation and returnedto the called. If there is a problem creating the internal representation, orif the tree cannot be validated, a ParserError exception is raised. AnST object created this way should not be assumed to compile correctly; normalexceptions raised by compilation may still be initiated when the ST object ispassed to compilest(). This may indicate problems not related to syntax(such as a MemoryError exception), but may also be due to constructs suchas the result of parsing del f(0), which escapes the Python parser but ischecked by the bytecode compiler.

    Sequences representing terminal tokens may be represented as either two-elementlists of the form (1, 'name') or as three-element lists of the form (1,'name', 56). If the third element is present, it is assumed to be a validline number. The line number may be specified for any subset of the terminalsymbols in the input tree.

    • parser.tuple2st(sequence)
    • This is the same function as sequence2st(). This entry point ismaintained for backward compatibility.

    Converting ST Objects

    ST objects, regardless of the input used to create them, may be converted toparse trees represented as list- or tuple- trees, or may be compiled intoexecutable code objects. Parse trees may be extracted with or without linenumbering information.

    • parser.st2list(st, line_info=False, col_info=False)
    • This function accepts an ST object from the caller in st and returns aPython list representing the equivalent parse tree. The resulting listrepresentation can be used for inspection or the creation of a new parse tree inlist form. This function does not fail so long as memory is available to buildthe list representation. If the parse tree will only be used for inspection,st2tuple() should be used instead to reduce memory consumption andfragmentation. When the list representation is required, this function issignificantly faster than retrieving a tuple representation and converting thatto nested lists.

    If line_info is true, line number information will be included for allterminal tokens as a third element of the list representing the token. Notethat the line number provided specifies the line on which the token ends.This information is omitted if the flag is false or omitted.

    • parser.st2tuple(st, line_info=False, col_info=False)
    • This function accepts an ST object from the caller in st and returns aPython tuple representing the equivalent parse tree. Other than returning atuple instead of a list, this function is identical to st2list().

    If line_info is true, line number information will be included for allterminal tokens as a third element of the list representing the token. Thisinformation is omitted if the flag is false or omitted.

    • parser.compilest(st, filename='')
    • The Python byte compiler can be invoked on an ST object to produce code objectswhich can be used as part of a call to the built-in exec() or eval()functions. This function provides the interface to the compiler, passing theinternal parse tree from st to the parser, using the source file namespecified by the filename parameter. The default value supplied for _filename_indicates that the source was an ST object.

    Compiling an ST object may result in exceptions related to compilation; anexample would be a SyntaxError caused by the parse tree for del f(0):this statement is considered legal within the formal grammar for Python but isnot a legal language construct. The SyntaxError raised for thiscondition is actually generated by the Python byte-compiler normally, which iswhy it can be raised at this point by the parser module. Most causes ofcompilation failure can be diagnosed programmatically by inspection of the parsetree.

    Queries on ST Objects

    Two functions are provided which allow an application to determine if an ST wascreated as an expression or a suite. Neither of these functions can be used todetermine if an ST was created from source code via expr() orsuite() or from a parse tree via sequence2st().

    • parser.isexpr(st)
    • When st represents an 'eval' form, this function returns True, otherwiseit returns False. This is useful, since code objects normally cannot be queriedfor this information using existing built-in functions. Note that the codeobjects created by compilest() cannot be queried like this either, andare identical to those created by the built-in compile() function.

    • parser.issuite(st)

    • This function mirrors isexpr() in that it reports whether an ST objectrepresents an 'exec' form, commonly known as a "suite." It is not safe toassume that this function is equivalent to not isexpr(st), as additionalsyntactic fragments may be supported in the future.

    Exceptions and Error Handling

    The parser module defines a single exception, but may also pass other built-inexceptions from other portions of the Python runtime environment. See eachfunction for information about the exceptions it can raise.

    • exception parser.ParserError
    • Exception raised when a failure occurs within the parser module. This isgenerally produced for validation failures rather than the built-inSyntaxError raised during normal parsing. The exception argument iseither a string describing the reason of the failure or a tuple containing asequence causing the failure from a parse tree passed to sequence2st()and an explanatory string. Calls to sequence2st() need to be able tohandle either type of exception, while calls to other functions in the modulewill only need to be aware of the simple string values.

    Note that the functions compilest(), expr(), and suite() mayraise exceptions which are normally raised by the parsing and compilationprocess. These include the built in exceptions MemoryError,OverflowError, SyntaxError, and SystemError. In thesecases, these exceptions carry all the meaning normally associated with them.Refer to the descriptions of each function for detailed information.

    ST Objects

    Ordered and equality comparisons are supported between ST objects. Pickling ofST objects (using the pickle module) is also supported.

    • parser.STType
    • The type of the objects returned by expr(), suite() andsequence2st().

    ST objects have the following methods:

    • ST.compile(filename='')
    • Same as compilest(st, filename).
    • ST.isexpr()
    • Same as isexpr(st).

    • ST.issuite()

    • Same as issuite(st).

    • ST.tolist(line_info=False, col_info=False)

    • Same as st2list(st, line_info, col_info).

    • ST.totuple(line_info=False, col_info=False)

    • Same as st2tuple(st, line_info, col_info).

    Example: Emulation of compile()

    While many useful operations may take place between parsing and bytecodegeneration, the simplest operation is to do nothing. For this purpose, usingthe parser module to produce an intermediate data structure is equivalentto the code

    1. >>> code = compile('a + 5', 'file.py', 'eval')
    2. >>> a = 5
    3. >>> eval(code)
    4. 10

    The equivalent operation using the parser module is somewhat longer, andallows the intermediate internal parse tree to be retained as an ST object:

    1. >>> import parser
    2. >>> st = parser.expr('a + 5')
    3. >>> code = st.compile('file.py')
    4. >>> a = 5
    5. >>> eval(code)
    6. 10

    An application which needs both ST and code objects can package this code intoreadily available functions:

    1. import parser
    2.  
    3. def load_suite(source_string):
    4. st = parser.suite(source_string)
    5. return st, st.compile()
    6.  
    7. def load_expression(source_string):
    8. st = parser.expr(source_string)
    9. return st, st.compile()