[Cython] Running the test suite in Py3.1
Stefan Behnel
stefan_ml at behnel.de
Tue Jul 7 06:57:23 CEST 2009
Hi Lisandro,
Lisandro Dalcin wrote:
> How are we going to handle 'operator.div' (not available in Py3) at
> Cython/Compiler/ExprNodes.py ? Just got a failure...
Ah, right. I didn't commit that yet. There's a thread on future division I
started three days ago. I'm currently mapping '/' and '//' to either
floordiv or truediv, depending on the input types. Trying to do that in a
portable way made me notice that I'd need to find a way to run the test
suite in Py3, which gets us back to this thread's topic. :)
Stefan
More information about the Cython-dev
mailing list