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 georg.brandl
Recipients alexander.shirokov, georg.brandl
Date 2007-10-08.07:08:09
SpamBayes Score 0.075432315
Marked as misclassified No
Message-id <1191827291.0.0.86273272349.issue1244@psf.upfronthosting.co.za>
In-reply-to
Content
The raise statement without any arguments re-raises the last raised
exception, complete with traceback, see
http://docs.python.org/dev/reference/simple_stmts.html#the-raise-statement. 

Therefore your usage of the raise statement is incorrect; you should
always use

raise SomeException("some message")
History
Date User Action Args
2007-10-08 07:08:12georg.brandlsetspambayes_score: 0.0754323 -> 0.075432315
recipients: + georg.brandl, alexander.shirokov
2007-10-08 07:08:11georg.brandlsetspambayes_score: 0.0754323 -> 0.0754323
messageid: <1191827291.0.0.86273272349.issue1244@psf.upfronthosting.co.za>
2007-10-08 07:08:10georg.brandllinkissue1244 messages
2007-10-08 07:08:10georg.brandlcreate