Dag Sverre Seljebotn wrote: > Stefan Behnel wrote: >> Stefan Behnel wrote: >>> I also noticed tons of warnings in the C++ "compile" tests regarding >>> useless code. I'm not sure why they pop up in Py3 and not in Py2. >> Those are actually due to the refnanny code. I had to disable the refnanny >> in Py3, as we cannot currently compile Cython on that platform anyway, and >> the refnanny is built as part of the normal Cython build.
To be clearer, runtests.py works with the refnanny without the normal Cython build happening first (runtests.py uses pyximport to build it). To test e.g. lxml with the refnanny under Python 3 you would need to manually compile and install Cython/Runtime/refnanny.pyx (You probably already know this; just to be sure) -- Dag Sverre _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
