这里__class__
不应与self.__class__
混淆,我已经可以使用inspect
模块进行访问了:
import inspect
class A:
def __init__(self):
print(__class__.__name__) # I want to move this statement inside f
f()
class B(A):
pass
def f():
prev_frame = inspect.currentframe().f_back
self = prev_frame.f_locals["self"]
print(self.__class__.__name__)
B() # prints A B
答案 0 :(得分:3)
仅当您在方法中实际引用(或使用super
)时,才在编译时创建timeouts supported by WinHTTP。例如此代码:
class Foo:
def bar(self):
print('bar', locals())
def baz(self):
print('baz', locals())
if False:
__class__
if __name__ == '__main__':
foo = Foo()
foo.bar()
foo.baz()
产生此输出:
bar {'self': <__main__.Foo object at 0x10f45f978>}
baz {'self': <__main__.Foo object at 0x10f45f978>, '__class__': <class '__main__.Foo'>}
要找到调用函数的类(在大多数情况下),可以将一些CPython特定的inspect
咒语链接在一起:
我不推荐。