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:02 | amaury.forgeotdarc | set | spambayes_score: 0.0613342 -> 0.061334178 recipients: + amaury.forgeotdarc, nnorwitz, garikvm |
| 2008年04月05日 12:08:02 | amaury.forgeotdarc | set | spambayes_score: 0.0613342 -> 0.0613342 messageid: <1207397282.65.0.182368069305.issue2546@psf.upfronthosting.co.za> |
| 2008年04月05日 12:07:44 | amaury.forgeotdarc | link | issue2546 messages |
| 2008年04月05日 12:07:43 | amaury.forgeotdarc | create | |