文件名称:gast:提取基础Python版本的Python AST
文件大小:17KB
文件格式:ZIP
更新时间:2024-06-15 15:21:26
Python
GAST,Daou Naer! 代表Python2和Python3的抽象语法树(AST)的通用AST。 GAST提供了各种Python版本的AST之间的兼容性层,这是由ast.parse从标准ast模块生成的。 基本用法 >> > import ast , gast >> > code = open ( 'file.py' ). read () >> > tree = ast . parse ( code ) >> > gtree = gast . ast_to_gast ( tree ) >> > ... # process gtree >> > tree = gast . gast_to_ast ( gtree ) >> > ... # do stuff specific to tree 原料药 gast提供与ast模块相同的API。 ast模块中的所有功能和类也可以在gast模
【文件预览】:
gast-master
----MANIFEST.in(45B)
----README.rst(9KB)
----.travis.yml(317B)
----tox.ini(226B)
----LICENSE(1KB)
----setup.py(2KB)
----gast()
--------ast3.py(15KB)
--------gast.py(15KB)
--------__init__.py(84B)
--------astn.py(999B)
--------ast2.py(13KB)
----tests()
--------test_self.py(876B)
--------test_api.py(4KB)
--------__init__.py(46B)
--------test_compat.py(16KB)
----.gitignore(127B)