Hi, Lisandro Dalcin wrote: > Now I've got another failure with my code. > > The following works (): > > def winsize(size): > try: > w, h = size > except TypeError: > w = size > h = size > return w, h > > But the following not: > > def winsize(size): > try: > w, h = size > except TypeError: > w = h = size > return w, h
This should be fixed now. Stefan _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
