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

2011-06-21 Thread Stefan Behnel
Robert Bradshaw, 21.06.2011 01:14: 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 g

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] 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

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

2011-06-19 Thread Stefan Behnel
Jon Olav Vik, 20.06.2011 07:28: Vitja Makarov writes: 1. It seems that cython currently doesn't support tuples inside args definition: def foo((a, b), c): Note that this feature is removed in Python 3. http://www.python.org/dev/peps/pep-3113/ ... as already noted in ticket 692. http://tr

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

2011-06-19 Thread Jon Olav Vik
Vitja Makarov writes: > 1. It seems that cython currently doesn't support tuples inside args definition: > def foo((a, b), c): Note that this feature is removed in Python 3. http://www.python.org/dev/peps/pep-3113/ ___ cython-devel mailing list cyth

[Cython] Some bugs found while testing cython on django

2011-06-19 Thread Vitja Makarov
Hi! 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 django/contrib/gis/forms/fields