Re: [Cython] Bindings performance issue

2011-06-20 Thread Stefan Behnel
Vitja Makarov, 20.06.2011 22:23: Wow now we have about 11K tests with 171 errors! https://sage.math.washington.edu:8091/hudson/view/cython-vitek/job/cython-vitek-tests-pyregr-py27-c/ Yes, that was a low hanging, high value bug. """ Make cyfunction __name__ attribute writable """ Could you pr

Re: [Cython] Some bugs found while testing cython on django

2011-06-20 Thread Robert Bradshaw
On Mon, Jun 20, 2011 at 12:14 AM, Stefan Behnel wrote: > Vitja Makarov, 19.06.2011 21:37: >> >> Trying to compile django I've found some problems: >> >> 1. It seems that cython currently doesn't support tuples inside args >> definition: >> >> def foo((a, b), c): >> >> Currently this gives missing

Re: [Cython] Bindings performance issue

2011-06-20 Thread Vitja Makarov
Wow now we have about 11K tests with 171 errors! https://sage.math.washington.edu:8091/hudson/view/cython-vitek/job/cython-vitek-tests-pyregr-py27-c/ -- vitja. ___ cython-devel mailing list cython-devel@python.org http://mail.python.org/mailman/listinf

Re: [Cython] Some bugs found while testing cython on django

2011-06-20 Thread Vitja Makarov
2011/6/20 Stefan Behnel : > Vitja Makarov, 19.06.2011 21:37: >> >> Trying to compile django I've found some problems: >> >> 1. It seems that cython currently doesn't support tuples inside args >> definition: >> >> def foo((a, b), c): >> >> Currently this gives missing argument name and crash inside

Re: [Cython] Some bugs found while testing cython on django

2011-06-20 Thread Stefan Behnel
Vitja Makarov, 19.06.2011 21:37: Trying to compile django I've found some problems: 1. It seems that cython currently doesn't support tuples inside args definition: def foo((a, b), c): Currently this gives missing argument name and crash inside CreateControlFlow graph cython -X binding=True d