如何从Python中的被调用函数访问调用者方法的__class__属性?

时间:2019-06-02 17:44:57

标签: python code-inspection class-attributes

这里__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

1 个答案:

答案 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咒语链接在一起:

  1. 找到调用函数:implicit __class__ reference
  2. 找到该函数的类:How to get current function into a variable?

我不推荐。