Python 语言服务¶
Python 提供了许多模块来帮助使用 Python 语言。 这些模块支持标记化、解析、语法分析、字节码反汇编以及各种其他工具。
这些模块包括:
ast
--- 抽象语法树symtable
--- Access to the compiler's symbol tablestoken
--- 与Python解析树一起使用的常量keyword
--- 检验Python关键字tokenize
--- 对 Python 代码使用的标记解析器tabnanny
--- 模糊缩进检测pyclbr
--- Python 模块浏览器支持py_compile
--- 编译 Python 源文件compileall
--- Byte-compile Python librariesdis
--- Python 字节码反汇编器pickletools
--- pickle 开发者工具集