Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
5k views

How can you programmatically inspect the stack trace of an exception in Python?

When an exception occurs in Python, can you inspect the stack? Can you determine its depth? I've looked at the traceback module, but I can't figure out how to use it. My goal is to catch any ...
7
votes
4answers
326 views

C++ equivalent to Python's traceback library

I need to get some debugging libraries/tools to trace back the stack information print out to the stdout. Python's traceback library can be an example. What can be the C++ equivalent to Python's ...
5
votes
3answers
73 views

Is there any way to access nested or re-raised exceptions in python?

A common pattern in python is to catch an error in an upstream module and re-raise that error as something more useful. try: config_file = open('config.ini', 'r') except IOError: raise ...
5
votes
2answers
584 views

How can I get a traceback in Perl? [closed]

Possible Duplicate: How do I force a stack backtrace for all fatal errors in Perl? One of the things I like about Python, is that when a script exits because of an error, it spits out a ...
4
votes
1answer
131 views

How to realize error traceback in Emacs?

I am writing a compiler in Ocaml. The tracback works well when I compile and test it with make in a terminal, for instance: export OCAMLRUNPARAM=b ./Simpler-Basic test.sib Fatal error: exception ...
4
votes
1answer
315 views

Python: Getting a traceback from a multiprocessing.Process

I am trying to get hold of a traceback object from a multiprocessing.Process. Unfortunately passing the exception info through a pipe does not work because traceback objects can not be pickled: def ...
4
votes
2answers
93 views

How to get value of arguments in functions at stack

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 ...
4
votes
6answers
180 views

Implementing traceback on i386

I am currently porting our code from an alpha (Tru64) to an i386 processor (Linux) in C. Everything has gone pretty smoothly up until I looked into porting our exception handling routine. Currently we ...
3
votes
4answers
417 views

Determine Python function's name from within that function (without using traceback)

In Python without using the traceback module, is there a way to determine a function's name from within that function? Say I have a module foo with a function bar. When executing foo.bar(), is there ...
2
votes
1answer
47 views

get all lines of a continuation line in traceback

Is it possible to get all lines of a continuation line in a traceback? Example: #! /usr/bin/env python def function_with_long_name(foo, bar): raise Exception('problem?') ...
2
votes
2answers
887 views

How do I use Django's logger to log a traceback when I tell it to?

try: print blah except KeyError: traceback.print_exc() I used to debug like this. I'd print to the console. Now, I want to log everything instead of print, since Apache doesn't allow ...
2
votes
3answers
510 views

Exception traceback is hidden if not re-raised immediately

I've got a peace of the programming code similar to this: import sys def func1(): func2() def func2(): raise Exception('test error') def main(): err = None try: func1() ...
2
votes
2answers
136 views

How do I get pylons to print the Traceback on the console?

I'd like to be able to just see any errors on the command line where I'm running paster. Most of my application is AJAX so the interactive debugger doesn't help me most of the time and I'm getting ...
1
vote
0answers
18 views

Using Python Tracing To Signal To Higher-Level Methods

I'm building a server where I'd like low level functions signal to higher level functions by calling them again. For instance: def bar(): print('hello') #run blah() again def foo(): ...
1
vote
0answers
29 views

Problems With py2app on a Mac

I've recently started to code python, and have written my first applications that I would like to give to some of my friends in the form of a single application, NOT a python script. After scouring ...
1
vote
1answer
31 views

getting the error traceback in a registered atexit function

I am trying to log the error that caused my process to shut down, but traceback.print_tb and traceback.print_exc don't seem to realize what the raised error is. In other words, why does the following ...
1
vote
4answers
47 views

Getting a traceback from a exceptions without re-raising them

I'm using Twister to build a server. I am also maintaining a server error log. The issue is that if I let an exception run all the way up the stack, it'll crash the current connection and disconnect ...
1
vote
1answer
59 views

sys.exc_info or sys.last_*?

Should I prefer sys.exc_info() over sys.last_value and friends (sys.last_type, sys.last_traceback)?
1
vote
3answers
122 views

Python - printing a histogram

I have a list of integer percentages which I need to print using the following pattern: The index of a value, a tab (8 spaces), a '*' printed for each percentage point also if the value for an ...
1
vote
1answer
503 views

How to get BACKTRACE (function + line number) on Solaris?

I have done some code in C that happily send the full backtrace with function name and line number to a log file. This was done using a mixture of backtrace, backtrace_symbols and dladdr and ...
1
vote
2answers
242 views

Error for Injected Javascript (Python Web Scraper)

I had a similar problem to this earlier, but I can't figure out why it won't let me click the checkbox. I BELIEVE I am making an error checking the checkbox by selecting it the wrong way. Here's my ...
1
vote
1answer
165 views

Why can't I pickle an error's Traceback in Python?

I've since found a work around, but still want to know the answer.
1
vote
1answer
186 views

play framework error

I am getting this error when I am simply trying to run play command from command prompt in windows. C:\Users\naveenreddy>play Traceback (most recent call last): File ...
1
vote
2answers
74 views

How come there is a TypeError in my Python code?

from celery.task import Task class Decayer(Task): def calc_decay_value(self, x): y = (1.0/(2^x)) return y def calc_decay_time(self, x): y = 2^x return y ...
0
votes
1answer
12 views

python3 traceback fails when no exception is active

I noticed that in Python2 when I try to dump the exception stack trace, but there's no active exception, it prints None: Python 2.7.2+ (default, Oct 4 2011, 20:06:09) >>> import traceback ...
0
votes
1answer
52 views

Django error traceback not showing the real error

In a Django view method, I have some code like this: x = my_dict['foo'] 'foo' is not in my_dict, so I'm getting an error traceback screen, as I should. However, the error screen claims the error ...
0
votes
3answers
131 views

How to rewrite a specific frame in a traceback?

In python you can compile() string to be executed faster with exec(). But as soon as i use it, we lost information when an exception happen in the exec. For example, here is a code snippet that ...
0
votes
1answer
101 views

Box2D won't work with Python

I have installed Python 2.6.6 and Box2D 2.0.2b1. And can't create box2d world - b2World(). Simple example: import Box2D Box2D.b2World() No matter what I type into function b2World, I received this ...
0
votes
5answers
189 views

Remove traceback in Python on Ctrl-C?

Is there a way to keep tracebacks from coming up when you hit Cntl-c [keyboardInterupt] in a python script?
0
votes
0answers
43 views

Dumping stack traceback to screen for debugging [closed]

Possible Duplicate: Save output error messages to file in MATLAB I am building a quite big system of functions manipulating images in different ways. These functions are all being called ...
0
votes
3answers
396 views

how to get a complete exception stack trace in python

The following snippet: import traceback def a(): b() def b(): try: c() except: traceback.print_exc() def c(): assert False a() Produces this output: Traceback ...
0
votes
2answers
102 views

How can I eliminate my custom __import__ hook from Python backtraces

I'm the implementor of the Lazy Python Reloader, and it's all working wonderfully, except that once I overrode the builtin __import__ function, I started seeing my replacement in tracebacks whenever ...
0
votes
6answers
230 views

How can I log current line, and stack info with Python?

I have logging function as follows. logging.basicConfig( filename = fileName, format = "%(levelname) -10s %(asctime)s %(message)s", level = logging.DEBUG ) def printinfo(string): if ...
0
votes
1answer
68 views

How to get from the TraceBackFrame to the ScriptSource

I'm currently experimenting with lightweight debugging via Python.SetTrace(). But I cannot find a generic way from the callback parameters (TraceBackFrame stackFrame, string stEvent, object payload) ...
0
votes
1answer
180 views

Python win32com Error

I got the following traceback in my setup script: Exception in Tkinter callback Traceback (most recent call last): File "Tkinter.pyc", line 1410, in __call__ File "Setup.py", line 233, in step6 ...
0
votes
1answer
547 views

Twisted Web Proxy Help!

I wrote a Twisted Python HTTP proxy, and keep getting the following Traceback after navigating to a page through the proxy. Traceback (most recent call last): File "C:\ZBrownTechnology\Web ...
0
votes
1answer
123 views

packet marking(IP Traceback) in C#

I'm looking for implementation of IP Traceback using packet marking algorithm in C#? I google it but could not find anything!!! any one know a website has this implementation ??
0
votes
1answer
276 views

Python equivalent of PyErr_Print()

What is the Python API equivalent of PyErr_Print(), from the C interface? I'm assuming a call in either the sys, or traceback modules, but can't find any functions therein that make calls to ...