python 使用`inspect`或`__source__`属性获取python中函数的源代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用`inspect`或`__source__`属性获取python中函数的源代码相关的知识,希望对你有一定的参考价值。

def function_code(fn):
    """ returns the source code of the given function 
        by: Cody Kochmann 
      """
    from inspect import getsource
    assert callable(fn), 'function_source needs its argument to be callable'
    if '__source__' in dir(fn):
        return fn.__source__
    else:
        try:
            return getsource(fn)
        except OSError:
            return None

以上是关于python 使用`inspect`或`__source__`属性获取python中函数的源代码的主要内容,如果未能解决你的问题,请参考以下文章

Python:inspect.ismethod 是如何工作的?

如何使用inspect从Python中的被调用者那里获取调用者的信息?

python模块inspect.py

基础入门_Python-模块和包.运维开发中inspect自省模块的最佳实践?

python inspect模块

SIGABRT 在 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ 上崩溃