Re: visit_decref: Assertion `gc->gc.gc_refs != 0' failed.

2005-09-09 Thread Tim Peters
[alexLIGO] > I got this error when trying to execute the following python command > with in a C module: Py_BuildValue > > Do anyone have any idea what this error is about? Just the comment on the failing assert: assert(gc->gc.gc_refs != 0); /* else refcount was too small */ There are more p

Re: visit_decref: Assertion `gc->gc.gc_refs != 0' failed.

2005-09-09 Thread Michael Hudson
"alexLIGO" <[EMAIL PROTECTED]> writes: > Hi, > > I got this error when trying to execute the following python command > with in a C module: Py_BuildValue You get that error immediately on calling that function? > Do anyone have any idea what this error is about? You've probably got your refcou

visit_decref: Assertion `gc->gc.gc_refs != 0' failed.

2005-09-05 Thread alexLIGO
Hi, I got this error when trying to execute the following python command with in a C module: Py_BuildValue Do anyone have any idea what this error is about? And does anyone have any idea how to debug a python script? Thanks Alexander -- http://mail.python.org/mailman/listinfo/python-list