我在Python中找到了代码对象。我很好奇构造函数中的每个变量都做了什么。我得到的内置帮助功能中没有太多关于它们的信息是:
class code(object)
| code(argcount, nlocals, stacksize, flags, codestring, constants, names,
| varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])
|
| Create a code object. Not for the faint of heart.
这显然不是很有用。每种输入都期望什么类型,以及这些值的作用是什么? 注意:我出于学术上的好奇心问了这个问题,而不是出于任何特定的编码目的。
答案 0 :(得分:1)
Python代码对象大多只是其属性的容器。您为构造函数看到的每个参数都变为带有co_
前缀的属性(例如argcount
参数变为co_argcount
属性。)
构造函数确实进行了一些验证,因此如果参数不是正确的类型,它将立即引发异常(而不是仅在稍后使用代码对象时失败)。
关于参数和属性的含义,这主要记录在the documentation for the inspect
module的大表中。这是相关部分:
code co_argcount number of arguments (not including * or ** args)
co_code string of raw compiled bytecode
co_consts tuple of constants used in the bytecode
co_filename name of file in which this code object was created
co_firstlineno number of first line in Python source code
co_flags bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg
co_lnotab encoded mapping of line numbers to bytecode indices
co_name name with which this code object was defined
co_names tuple of names of local variables
co_nlocals number of local variables
co_stacksize virtual machine stack space required
co_varnames tuple of names of arguments and local variables
据我所知,属性co_freevars
和co_cellvars
未记录在案。我认为它们与封闭有关。