This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients amaury.forgeotdarc, garikvm, nnorwitz
Date 2008-04-05.12:07:43
SpamBayes Score 0.061334178
Marked as misclassified No
Message-id <1207397282.65.0.182368069305.issue2546@psf.upfronthosting.co.za>
In-reply-to
Content
The crash is because of an error in your C code:
in backend.c::
    void backend(char *output_filename)
    {
        C2py("backend", 1, output_filename);
    }

But your C2py function expects a variable number of PyObject*.

I found this by disabling the garbage collector: then the program
crashes in C2py.c at the instruction "Py_DECREF(pArgs);"
History
Date User Action Args
2008-04-05 12:08:02amaury.forgeotdarcsetspambayes_score: 0.0613342 -> 0.061334178
recipients: + amaury.forgeotdarc, nnorwitz, garikvm
2008-04-05 12:08:02amaury.forgeotdarcsetspambayes_score: 0.0613342 -> 0.0613342
messageid: <1207397282.65.0.182368069305.issue2546@psf.upfronthosting.co.za>
2008-04-05 12:07:44amaury.forgeotdarclinkissue2546 messages
2008-04-05 12:07:43amaury.forgeotdarccreate