- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 python 脚本。
def hello(self):
return 6
print hello()
在 CPython 中编译后反汇编
>>> c = compile(open('hello.py').read(), 'hello.py', 'exec')
>>> import dis
>>> dis.dis(c)
1 0 LOAD_CONST 0 (<code object hello at 0x1006c9230, file "hello.py", line 1>)
3 MAKE_FUNCTION 0
6 STORE_NAME 0 (hello)
3 9 LOAD_NAME 0 (hello)
12 CALL_FUNCTION 0
15 PRINT_ITEM
16 PRINT_NEWLINE
17 LOAD_CONST 1 (None)
20 RETURN_VALUE
我很好奇 <code object hello at 0x1006c9230 ...>
是怎么来的存储在 CPython 代码对象中。有 co_code
函数,但只打印出字节码指令。如果我序列化我得到的 CPython 代码对象
>>> import marshal
>>> marshal.dumps(c)
'c\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00@\x00\x00\x00s\x15\x00\x00\x00d\x00\x00\x84\x00\x00Z\x00\x00e\x00\x00\x83\x00\x00GHd\x01\x00S(\x02\x00\x00\x00c\x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00C\x00\x00\x00s\n\x00\x00\x00d\x01\x00}\x01\x00|\x01\x00S(\x02\x00\x00\x00Ni\x06\x00\x00\x00(\x00\x00\x00\x00(\x02\x00\x00\x00t\x04\x00\x00\x00selft\x01\x00\x00\x00x(\x00\x00\x00\x00(\x00\x00\x00\x00s\x08\x00\x00\x00hello.pyt\x05\x00\x00\x00hello\x01\x00\x00\x00s\x04\x00\x00\x00\x00\x01\x06\x01N(\x01\x00\x00\x00R\x02\x00\x00\x00(\x00\x00\x00\x00(\x00\x00\x00\x00(\x00\x00\x00\x00s\x08\x00\x00\x00hello.pyt\x08\x00\x00\x00<module>\x01\x00\x00\x00s\x02\x00\x00\x00\t\x03'
我知道
def hello(self):
return 6
存储在转储中的某处,因为如果我将其更改为 return 5
,转储中的一个字节从 6 切换到 5。
1) 有没有一种方法可以从 CPython 代码对象访问函数体。我能拿到的最近的c.names
但这只会打印出一个字符串。我假设在幕后它是一个被序列化为字符串的 PyObject。我还想确认函数体确实存储在 c.names
中.
2) marshal dump 将函数存储为字节码指令还是未编译的文字?当我搜索操作码\x83 (RETURN_VALUE) 时,我倾向于未编译的文字,它只在转储中出现一次。我相信这意味着只有一个 return 语句,而应该有两个:一次退出函数 hello,一次返回 None 以退出脚本。
版本
Python 2.7.13+ (heads/2.7:96f5020597, May 26 2017, 15:26:13)
[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
最佳答案
让我们分解一下。
首先,让我澄清一下 CPython 究竟是如何存储函数的。解析函数时,CPython 将函数的数据存储在代码对象 中。 CPython 使用代码对象来存储函数、类和模块。然后将表示函数的代码对象序列化为特定的字节代码格式。
函数的代码对象存储在它们的__code__
中。属性:
>>> def foo():
pass
>>>
>>> foo.__code__
<code object foo at 0x7f8bd86ce5d0, file "<pyshell#14>", line 1>
>>>
这些代码对象包含与函数相关的各种数据,例如函数参数、引用的常量(例如 1
或 "Hello"
)和名称。函数的字节码存储在.co_code
中属性。这是 CPython 运行您的函数时实际执行的内容:
>>> def foo():
pass
>>> foo.__code__.co_code
b'd\x00\x00S' # bytecode for foo
>>>
现在您了解了 CPython 的基本功能,我们可以解决您的具体问题。
Is there a way I can access the function body from the CPython code object. The closest I can get it c.names but that only prints out a string. I'm assuming there behind the scenes it is a PyObject that is being serialized as a string. I would also like a confirmation that the function body is indeed stored in c.names.
函数体没有存储在co_name
中代码对象的属性。它存储在 .co_code
中属性如上所述。您的其他假设也有点偏离。从技术上讲,由于 Python 中的所有对象都“继承”自 PyObject
, 说函数体被序列化为 PyObject
是正确的序列化为字符串。但是,最好说它被序列化为PyStringObject
。这是表示字符串的特定类型。
Does marshal dump store the function as bytecode instructions or as a uncompiled literal? I'm leaning toward uncompiled literal as I searched for the opcode \x83 (RETURN_VALUE) and it only appears once in the dump. I believe this implies that there is only one return statement when there should be two: once to exit out of the function hello and once to return None for exiting the script.
两者都不做。 marhsal.dumps()
接受一个代码对象,将整个代码对象序列化为 CPython 特定格式,并返回一个表示序列化代码对象的字节对象。但是,您的第二个陈述是正确的。在每个 Python 脚本的末尾,隐含 None
被退回。这可以通过将空参数传递给 dis.dis()
来观察。 :
>>> import dis
>>> dis.dis("")
1 0 LOAD_CONST 0 (None)
3 RETURN_VALUE
>>>
I know for a fact that
<code object hello at 0x1006c9230 ...>
is not stored in the co_code attribute of the original c. This is because no matter how I change the inside of def hello() the same disassembler output is given. To be clear this is a function inside a function/script not just a function as you gave in your example.
在您的具体示例中,变量 c
是一个代码对象,代表模块——而不是函数——“hello.py”。你的权利,函数的代码对象hello()
不在 co_code
中.它存储在模块的代码对象的 co_consts
中。属性:
>>> co = compile(open('hello.py').read(), 'hello.py', 'exec')
>>> co.co_consts
(<code object hello at 0x7fedcbd3dc00, file "hello.py", line 1>, 'hello', None)
>>>
这是因为 Python 执行代码的方式。常量不直接存储在代码对象的字节码中。相反,它们存储在自己单独的元组中。每当在函数代码中引用常量时,实际常量存储在 co_consts
中和一个索引,它对应于所述常量在co_consts
中的位置放在字节码中。
为什么你的反汇编器输出 hello()
的原因的代码对象永远不会改变是因为所有 dis.dis()
正在做的只是显示 hello()
的字符串表示代码对象。 hello()
的代码对象确实在您更改代码时发生了变化,但该变化由 dis
显示.它不显示 hello()
的实际更改 属性s 代码对象。
关于python - 名称和函数体如何存储在 Python 代码对象中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44212297/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!