[Cython] Bug: comprehensions clear current exception

2015-06-13 Thread Andrew Svetlov
from comprehension to regular iteration works well: lst = [] for k, v in self._items: lst.append("'{}': {!r}".format(k, v)) body = ', '.join(lst) In pyre Python both versions don't clear current exception. I think it's a Cython bug. -- Thanks, Andre

Re: [Cython] Bug: comprehensions clear current exception

2015-06-16 Thread Andrew Svetlov
I saw the same behavior for eating current exception not only for comprehensions but for iterating over generator with yield's (both iterating code and generator was in Cython). On Tue, Jun 16, 2015 at 6:53 PM, Stefan Behnel wrote: > Andrew Svetlov schrieb am 13.06.2015 um 08:30: >

Re: [Cython] Cython 0.25 beta

2016-10-11 Thread Andrew Svetlov
eported in > the following issue in this release: > https://github.com/cython/cython/issues/1466 > > Thanks, > Josh > ___ > cython-devel mailing list > cython-devel@python.org > https://mail.python.org/mailman/listinfo/cython-devel

Re: [Cython] Cython 0.25 beta

2016-10-11 Thread Andrew Svetlov
https://github.com/cython/cython/issues/1461 is still an issue. On Monday, October 10, 2016 at 10:51:37 PM UTC+3, Robert Bradshaw wrote: > > Thanks for all of those to tested the alpha release. I think we've managed > to fix all the issues and regressions raised in that thread; here's a beta > t