内容表

  • symtable — 访问编译器的符号表
    • 生成符号表
    • 审查符号表

上一话题

ast — 抽象句法树

下一话题
就业培训     下载中心     Wiki     联络
登录   注册

Log
  1. 首页
  2. Python 3.12.4
  3. 索引
  4. 模块
  5. 下一
  6. 上一
  7. Python 标准库
  8. Python 语言服务
  9. symtable — 访问编译器的符号表

symtable — 访问编译器的符号表 ¶

源代码: Lib/symtable.py


Symbol tables are generated by the compiler from AST just before bytecode is generated. The symbol table is responsible for calculating the scope of every identifier in the code. symtable provides an interface to examine these tables.

生成符号表 ¶

symtable. symtable ( code , filename , compile_type ) ¶

Return the toplevel SymbolTable for the Python source code . filename is the name of the file containing the code. compile_type is like the mode 自变量对于 compile() .

审查符号表 ¶

class symtable. SymbolTable ¶

A namespace table for a block. The constructor is not public.

get_type ( ) ¶

Return the type of the symbol table. Possible values are 'class' , 'module' , 'function' , 'annotation' , 'TypeVar bound' , 'type alias' ,和 'type parameter' . The latter four refer to different flavors of annotation scopes .

Changed in version 3.12: 添加 'annotation' , 'TypeVar bound' , 'type alias' ,和 'type parameter' as possible return values.

get_id ( ) ¶

Return the table’s identifier.

get_name ( ) ¶

Return the table’s name. This is the name of the class if the table is for a class, the name of the function if the table is for a function, or 'top' if the table is global ( get_type() 返回 'module' ). For type parameter scopes (which are used for generic classes, functions, and type aliases), it is the name of the underlying class, function, or type alias. For type alias scopes, it is the name of the type alias. For TypeVar bound scopes, it is the name of the TypeVar .

get_lineno ( ) ¶

Return the number of the first line in the block this table represents.

is_optimized ( ) ¶

返回 True if the locals in this table can be optimized.

is_nested ( ) ¶

返回 True if the block is a nested class or function.

has_children ( ) ¶

返回 True if the block has nested namespaces within it. These can be obtained with get_children() .

get_identifiers ( ) ¶

Return a view object containing the names of symbols in the table. See the 视图对象的文档编制 .

lookup ( name ) ¶

Lookup name in the table and return a Symbol 实例。

get_symbols ( ) ¶

返回列表化的 Symbol instances for names in the table.

get_children ( ) ¶

Return a list of the nested symbol tables.

class symtable. Function ¶

A namespace for a function or method. This class inherits from SymbolTable .

get_parameters ( ) ¶

Return a tuple containing names of parameters to this function.

get_locals ( ) ¶

Return a tuple containing names of locals in this function.

get_globals ( ) ¶

Return a tuple containing names of globals in this function.

get_nonlocals ( ) ¶

Return a tuple containing names of nonlocals in this function.

get_frees ( ) ¶

Return a tuple containing names of free variables in this function.

class symtable. 类 ¶

A namespace of a class. This class inherits from SymbolTable .

get_methods ( ) ¶

Return a tuple containing the names of methods declared in the class.

class symtable. Symbol ¶

An entry in a SymbolTable corresponding to an identifier in the source. The constructor is not public.

get_name ( ) ¶

Return the symbol’s name.

is_referenced ( ) ¶

返回 True if the symbol is used in its block.

is_imported ( ) ¶

返回 True if the symbol is created from an import statement.

is_parameter ( ) ¶

返回 True if the symbol is a parameter.

is_global ( ) ¶

返回 True if the symbol is global.

is_nonlocal ( ) ¶

返回 True if the symbol is nonlocal.

is_declared_global ( ) ¶

返回 True if the symbol is declared global with a global statement.

is_local ( ) ¶

返回 True if the symbol is local to its block.

is_annotated ( ) ¶

返回 True if the symbol is annotated.

Added in version 3.6.

is_free ( ) ¶

返回 True if the symbol is referenced in its block, but not assigned to.

is_assigned ( ) ¶

返回 True if the symbol is assigned to in its block.

is_namespace ( ) ¶

返回 True if name binding introduces new namespace.

If the name is used as the target of a function or class statement, this will be true.

例如:

>>> table = symtable.symtable("def some_func(): pass", "string", "exec")
>>> table.lookup("some_func").is_namespace()
True
														

Note that a single name can be bound to multiple objects. If the result is True , the name may also be bound to other objects, like an int or list, that does not introduce a new namespace.

get_namespaces ( ) ¶

Return a list of namespaces bound to this name.

get_namespace ( ) ¶

Return the namespace bound to this name. If more than one or no namespace is bound to this name, a ValueError 被引发。

内容表

  • symtable — 访问编译器的符号表
    • 生成符号表
    • 审查符号表

上一话题

ast — 抽象句法树

下一话题

token — 用于 Python 剖析树的常量

本页

  • 报告 Bug
  • 展示源

快速搜索

键入搜索术语或模块、类、函数名称。

  1. 首页
  2. Python 3.12.4
  3. 索引
  4. 模块
  5. 下一
  6. 上一
  7. Python 标准库
  8. Python 语言服务
  9. symtable — 访问编译器的符号表

版权所有  © 2014-2026 乐数软件    

工业和信息化部: 粤ICP备14079481号-1