(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/AST Examples.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/module-parser.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/AST Errors.html| ]]
|
Python Library Reference
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/genindex.html| ]]
|
Next: 3.16.6 Examples Up: 3.16 parser Previous: 3.16.4 Exceptions and Error
3.16.5 AST Objects
Ordered and equality comparisons are supported between AST objects. Pickling of AST objects (using the pickle module) is also supported.
- ASTType
- The type of the objects returned by expr(), suite() and sequence2ast().
AST objects have the following methods:
- compile ([filename])
- Same as
compileast(ast, filename).
- isexpr ()
- Same as
isexpr(ast).
- issuite ()
- Same as
issuite(ast).
- tolist ([line_info])
- Same as
ast2list(ast, line_info).
- totuple ([line_info])
- Same as
ast2tuple(ast, line_info).
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/AST Examples.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/module-parser.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/AST Errors.html| ]]
|
Python Library Reference
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/16/lib/genindex.html| ]]
|
Next: 3.16.6 Examples Up: 3.16 parser Previous: 3.16.4 Exceptions and Error