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. :-)

link|improve this question

Python would have to store these past values whenever it calls a function, so I don't think so. If you're just trying to debug then use a real debugger or log the values. – Jochen Ritzel May 19 '11 at 16:30
1  
@Jochen: I think Python does store the values, since the traceback references the frame, so the frame is not garbage collected. – Sven Marnach May 19 '11 at 16:32
@Jochen: I'm not trying to debug. I just want to put this information in log. To have more info about that what I need to debug. – Adam May 19 '11 at 16:54
feedback

2 Answers

up vote 7 down vote accepted

You can probably rig something up by using inspect.getargvalues() and accessing the stack frame belonging to your traceback:

 inspect.getargvalues(traceback.tb_frame)

You'll have to do some work to get the output exactly as desired. The above line is only for the innermost frame, so you'll have to walk up the stack and access the information you need for every frame. inspect.getouterframes() might come in handy.

link|improve this answer
feedback

You can use the inspect module for this:

>>> import inspect
... def fn(x):
...     try:
...         print(1/0)
...     except ZeroDivisionError as e:
...         frames = inspect.trace()
...         argvalues = inspect.getargvalues(frames[0][0])
...         print("Argvalues: ", inspect.formatargvalues(*argvalues))
>>> fn(12)
Argvalues:  (x=12)
link|improve this answer
Looks better than my code. Thanks! – Adam May 19 '11 at 16:45
feedback

Your Answer

 
or
required, but never shown

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