On Thu, Aug 12, 2010 at 9:42 AM, Robert Bradshaw <[email protected]> wrote: > Thanks. I merged your fix for #566 and commented out the __XXXslice__ > methods (until we have a way for testing them only on Py2).
I posted a new patch on #561. You'll have to undo your commenting-out of __XXXslice__ to apply the patch. This patch does not change behavior, only doctests. In particular, after #561, under Python 3, any __cmp__, __div__, __idiv__, __oct__, or __hex__ methods will be discarded, and defining a __nonzero__ method will give you a __bool__ method instead; the new patch doctests all these behaviors. Also, I couldn't figure out how to modify the IntLongC test in type_slots_int_long_T287.pyx to work under Python 3, so I just removed it. Lisandro, is that OK? (All the other tests are still there.) Carl _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
