Stefan Krah added the comment:

I think I've identified one legit Python bug. This is from a *different* 
traceback, i.e. the traceback in my first message is still unresolved.

A bus error occurs in test_capi, test_skipitem with format 'D':

Python/getargs.c:782

        Py_complex *p = va_arg(*p_va, Py_complex *);
        Py_complex cval;
        cval = PyComplex_AsCComplex(arg);
        if (PyErr_Occurred())
            RETURN_ERR_OCCURRED;
        else
            *p = cval;  <-  bus error
        break;


The pointer p has value 0xefbfb1fc, with 0xefbfb1fc % 8 == 4. It originates
from a somewhat creatively allocated memory region in 
_testcapi:parse_tuple_and_keywords. :)

----------
nosy: +larry

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15589>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to