Message254576
Another bug:
class MainError(Exception):
pass
class SubError(Exception):
pass
def main():
try:
raise MainError()
except MainError:
yield
coro = main()
coro.send(None)
coro.throw(SubError())
SubError will propagate, but won't have MainError in its __context__ |
|
Date |
User |
Action |
Args |
2015-11-12 23:42:43 | yselivanov | set | recipients:
+ yselivanov, gvanrossum, brett.cannon, ncoghlan, pitrou, vstinner, larry, benjamin.peterson, serhiy.storchaka |
2015-11-12 23:42:43 | yselivanov | set | messageid: <1447371763.42.0.620845494651.issue25612@psf.upfronthosting.co.za> |
2015-11-12 23:42:43 | yselivanov | link | issue25612 messages |
2015-11-12 23:42:43 | yselivanov | create | |
|