This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronniemaor
Recipients ronniemaor
Date 2009-12-22.19:48:36
SpamBayes Score 4.0524806e-12
Marked as misclassified No
Message-id <1261511318.07.0.56759832135.issue7563@psf.upfronthosting.co.za>
In-reply-to
Content
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:
...             yield 'foo'
...             raise
...
>>> for _ in coroutine():
...     pass
...
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 6, in coroutine
TypeError: exceptions must be classes or instances, not NoneType

Seems that yielding in the except clause makes python forget the current 
exception, so a bar "raise" statement raises None, instead of the 
original exception.
changing except to except Exception,e: and raise to raise e throws the 
original exception, but then the original stack trace is lost.
History
Date User Action Args
2009-12-22 19:48:38ronniemaorsetrecipients: + ronniemaor
2009-12-22 19:48:38ronniemaorsetmessageid: <1261511318.07.0.56759832135.issue7563@psf.upfronthosting.co.za>
2009-12-22 19:48:37ronniemaorlinkissue7563 messages
2009-12-22 19:48:36ronniemaorcreate