Re: [Cython] Bug: comprehensions clear current exception

2015-06-16 Thread Stefan Behnel
Andrew Svetlov schrieb am 13.06.2015 um 08:30: > I have an issue in aiohttp library: > https://github.com/KeepSafe/aiohttp/issues/410 > > The source of problem is: when I execute the following code > > body = ', '.join("'{}': {!r}".format(k, v) for k, v in self.items()) > > in except block Cytho

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: >> I have an iss