error return without exception set

W

Will McGugan

Hi,

Can anyone suggest a likely cause for the following exception...

Exception exceptions.SystemError: 'error return without exception set'
in <generator object at 0x0345CF30> ignored

Thanks

Will McGugan
 
P

Peter Otten

Will said:
Can anyone suggest a likely cause for the following exception...

Exception exceptions.SystemError: 'error return without exception set'
in <generator object at 0x0345CF30> ignored

The "Exception ... ignored" part is probably caused by an exception in a
finally block during garbage collection:
.... try:
.... yield 42
.... finally:
.... 1/0
....Exception exceptions.ZeroDivisionError: 'integer division or modulo by zero'
in <generator object at 0x401d2fec> ignored

The "error return without exception set" part looks like a failed
consistency check in ceval.c -- perhaps caused by a broken extension
written in C.

But you'd have to give some more context.

Peter
 
W

Will McGugan

Peter said:
The "error return without exception set" part looks like a failed
consistency check in ceval.c -- perhaps caused by a broken extension
written in C.

But you'd have to give some more context.

Thanks for the explanation. It happens when I'm debugging a wxWidgets
application with Komodo, but I can't trap it. I'm guessing it must be a
Komodo issue, because I dont get it if I run it without the debugger.

Will
 
M

Marcus

Will said:
Thanks for the explanation. It happens when I'm debugging a wxWidgets
application with Komodo, but I can't trap it. I'm guessing it must be a
Komodo issue, because I dont get it if I run it without the debugger.

The error happens in PyDev for Eclipse also -- only while debugging.

It happens with or without wxWidgets; I've always assumed it's a pydev
issue.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,608
Members
45,241
Latest member
Lisa1997

Latest Threads

Top