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