Re: [Cython] Language stability
Greg Ewing <greg.ewing-F+z8Qja7x9Xokq/[email protected]> Wed, 14 May 2008 11:43:57 +1200
| Newsgroups | gmane.comp.python.cython.devel,gmane.comp.python.pyrex |
|---|---|
| Message-ID | <[email protected]> |
Stefan Behnel wrote: > for x in iterable: > > and > > for x in 1 < x <= 5: That won't work, because it's ambiguous -- they're both instances of 'for x in <expression>'. In any case, simply changing 'from' to 'in' doesn't address the reason I made the change. -- Greg