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 garikvm
Recipients amaury.forgeotdarc, garikvm, nnorwitz
Date 2008-04-05.17:02:28
SpamBayes Score 0.40909386
Marked as misclassified No
Message-id <865997.19505.qm@web56304.mail.re3.yahoo.com>
In-reply-to <1207397282.65.0.182368069305.issue2546@psf.upfronthosting.co.za>
Content
Thank you, Amaury, very much for helping me with this one.
George

Amaury Forgeot d'Arc <report@bugs.python.org> wrote: 
Amaury Forgeot d'Arc  added the comment:

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);"

----------
priority: release blocker -> normal
resolution:  -> invalid
status: open -> closed

__________________________________
Tracker 

__________________________________

---------------------------------
You rock. That's why Blockbuster's offering you one month of Blockbuster Total Access, No Cost.
Files
File name Uploaded
unnamed garikvm, 2008-04-05.17:02:27
History
Date User Action Args
2008-04-05 17:03:43garikvmsetspambayes_score: 0.409094 -> 0.40909386
recipients: + garikvm, nnorwitz, amaury.forgeotdarc
2008-04-05 17:02:28garikvmlinkissue2546 messages
2008-04-05 17:02:28garikvmcreate