[issue7563] yield in except clause causes exception context to be lost

2013-01-18 Thread Adam Bielański
Changes by Adam Bielański : -- nosy: +Adam.Bielański ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue7563] yield in except clause causes exception context to be lost

2010-08-02 Thread Georg Brandl
Georg Brandl added the comment: This won't get backported now that 2.7 is in maintenance. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue7563] yield in except clause causes exception context to be lost

2009-12-22 Thread Benjamin Peterson
Benjamin Peterson added the comment: This is fixed in Python 3. I don't know if it's worth backporting the changes because it may be hard to avoid also backporting the incompatibilities in the exception model. -- nosy: +benjamin.peterson priority: -> normal ___

[issue7563] yield in except clause causes exception context to be lost

2009-12-22 Thread Ronnie Maor
New submission from Ronnie Maor : Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> def coroutine(): ... try: ... raise Exception('bla') ... except: ...