Using:
traceback.print_stack()
I can get:
File "x.py", line 20, in <module>
y(x)
File "x.py", line 11, in y
fun(x)
File "x.py", line 8, in fun
traceback.print_stack()
I there any way to get something like this:
File "x.py", line 20, in <module>
y(x) WHERE x == 1
File "x.py", line 11, in y
fun(x) WHERE x == 'str'
File "x.py", line 8, in fun
traceback.print_stack()
I just want to see what arguments was passed to functions.
EDIT:
Thanks!
Code:
import traceback
import inspect
import sys
def fun(x):
try:
print x[0]
except:
traceback.print_exc()
print inspect.getargvalues(sys.exc_info()[2].tb_frame)
def y(z):
fun(z)
v=1
y(v)
Give me result:
Traceback (most recent call last):
File "x.py", line 7, in fun
print x[0]
TypeError: 'int' object is unsubscriptable
ArgInfo(args=['x'], varargs=None, keywords=None, locals={'x': 1})
It's enough for me. :-)