Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to get the caller info (what file/what line) from callee. I learned that I can use inpect module for that for purposes, but not exactly how.

How to get those info with inspect? Or is there any other way to get the info?

import inspect

print __file__
c=inspect.currentframe()
print c.f_lineno

def hello():
    print inspect.stack
    ?? what file called me in what line?

hello()
share|improve this question

1 Answer

up vote 13 down vote accepted

The caller's frame is one frame higher than the current frame. You can use inspect.getouterframes to get the caller's frame, plus the filename and line number.

#!/usr/bin/env python
# coding: utf-8

import inspect

def hello():
    frame,filename,line_number,function_name,lines,index=\
        inspect.getouterframes(inspect.currentframe())[1]
    print(frame,filename,line_number,function_name,lines,index)
hello()

# (<frame object at 0x8ba7254>, '/home/unutbu/pybin/test.py', 10, '<module>', ['hello()\n'], 0)
share|improve this answer
thanks for the answer. How can I get the caller's caller? – prosseek Sep 14 '10 at 17:31
1  
@prosseek: To get the caller's caller, just change the index [1] to [2]. (inspect.getouterframes returns a list of frames...). Python is beautifully organized. – unutbu Sep 14 '10 at 17:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.