Arfrever Frehtes Taifersar Arahesis, 21.11.2009 00:59: > `python3.1 runtests.py --no-fork -vv` fails later with segmentation fault: > > ... > compiling (c) void_as_arg ... ok > compiling (c) and running __getattribute__ ... Doctest: __getattribute__.both > ... Segmentation fault
Yes, that's a known crash bug in CPython 3.1. I already reported it a while ago, but there wasn't any response so far. http://bugs.python.org/issue7173 It's not related to the code Cython generates, so the tests pass successfully when you generate the C files in Python 2.6 or earlier. It just crashes when you run the compiler's tree assertions in Python 3.1, i.e. for the pure Python code of the compiler itself. Stefan _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
