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 brodie
Recipients brodie
Date 2010-08-22.18:51:16
SpamBayes Score 0.18354018
Marked as misclassified No
Message-id <1282503078.33.0.815316651161.issue9661@psf.upfronthosting.co.za>
In-reply-to
Content
Given the following statements:

    raise Foo('bar'), None, baz
    raise Foo('bar'), None

2to3 produces:

    raise Foo('bar')(None).with_traceback(baz)
    raise Foo('bar')(None)

Instead of:

    raise Foo('bar').with_traceback(baz)
    raise Foo('bar')
History
Date User Action Args
2010-08-22 18:51:18brodiesetrecipients: + brodie
2010-08-22 18:51:18brodiesetmessageid: <1282503078.33.0.815316651161.issue9661@psf.upfronthosting.co.za>
2010-08-22 18:51:17brodielinkissue9661 messages
2010-08-22 18:51:16brodiecreate