为什么我无法在 pdb 中访问 self.<method>

问题描述

考虑这样的代码片段:

class ABC:
    def method1(self,word):
             ...

    def method2(self):
        str_list = ['this','is','a','list','of','strings']
        pdb.set_trace()
        str_list = [self.method1(word) for word in str_list] ...(1)

obj = ABC()
obj.method2()

在断点处,当我在 pdb 调试器 shell 中复制粘贴命令 (1) 时,它无法执行该命令,而是给了我错误

*** NameError: name 'self' is not defined

谁能帮我理解这种行为 - 是否与列表推导式和类对象的范围有关?


PS C:\fooProjects> & C:/python38/python.exe c:/fooProjects/tmp.py
> c:\fooprojects\tmp.py(38)method2()
-> str_list = [self.method1(word) for word in str_list]
(Pdb) [self.method1(word) for word in str_list]
*** NameError: name 'self' is not defined
(Pdb)

解决方法

在列表推导式中,除了最外层可迭代的表达式之外的所有内容都在新的作用域中运行。您在 PDB 提示符下输入的代码使用 exec 执行,并且在 exec 内创建的新作用域无法访问闭包变量,而 self 就是这样。

代替列表推导式,使用 interact 命令并编写一个常规的 for 循环将避免此范围界定问题。但是,interact 创建了自己的新命名空间,并且在该命名空间内执行的变量赋值不会传播回原始命名空间,因此如果您想将新列表分配给 str_list,您需要运行 str_list = [] before interact 然后将内容添加到 interact 中的列表中。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...