我想獲取有關python中特定函數的調用者的信息。例如:在python中獲取函數調用者的信息
class SomeClass():
def __init__(self, x):
self.x = x
def caller(self):
return special_func(self.x)
def special_func(x):
print "My caller is the 'caller' function in an 'SomeClass' class."
python有可能嗎?
從文檔:'它不能保證在Python.' – pradyunsg 2013-09-26 06:04:54