无法从已评估的lambda函数获取源代码

问题描述 投票:0回答:1

我遇到了一个有趣的事实,我想知道如何解决这个问题。通过使用inspect,很容易获得lambda的源代码。但是,一旦您从eval语句返回完全相同的lambda,则get source函数将失败。

import inspect

f = lambda a: a*2
f2 = eval("lambda a: a*2")

inspect.getsource(f), inspect.getsource(f2)


/usr/lib/python3.7/inspect.py in getsource(object)
    971     or code object.  The source code is returned as a single string.  An
    972     OSError is raised if the source code cannot be retrieved."""
--> 973     lines, lnum = getsourcelines(object)
    974     return ''.join(lines)
    975 

/usr/lib/python3.7/inspect.py in getsourcelines(object)
    953     raised if the source code cannot be retrieved."""
    954     object = unwrap(object)
--> 955     lines, lnum = findsource(object)
    956 
    957     if istraceback(object):

/usr/lib/python3.7/inspect.py in findsource(object)
    784         lines = linecache.getlines(file)
    785     if not lines:
--> 786         raise OSError('could not get source code')
    787 
    788     if ismodule(object):

OSError: could not get source code

有没有办法解决这个问题并获得评估代码的来源?

python eval inspect
1个回答
0
投票

函数不记得其源代码-他们所知道的只是它们来自的文件名和行号。如果函数定义不在仍然可用的物理文件中,则完全是inspect.getsource()无法工作。您需要反编译器,代替。

thx,jasonharper

© www.soinside.com 2019 - 2024. All rights reserved.