Je dois obtenir les informations sur l'appelant (quel fichier / quelle ligne) de l'appelé. J'ai appris que je peux utiliser le module inpect à cette fin, mais pas exactement comment.
Comment obtenir ces informations avec inspect? Ou y a-t-il un autre moyen d'obtenir l'information?
import inspect
print __file__
c=inspect.currentframe()
print c.f_lineno
def hello():
print inspect.stack
?? what file called me in what line?
hello()