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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2017-05-18.15:32:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1495121537.81.0.536306192808.issue30399@psf.upfronthosting.co.za>
In-reply-to
Content
The repr() of BaseException (and all exceptions that don't override __repr__) with a single argument contains a redundant trailing comma:

>>> BaseException('spam')
BaseException('spam',)

This is just an artefact of the implementation.

Proposed patch removes this comma.
History
Date User Action Args
2017-05-18 15:32:17serhiy.storchakasetrecipients: + serhiy.storchaka
2017-05-18 15:32:17serhiy.storchakasetmessageid: <1495121537.81.0.536306192808.issue30399@psf.upfronthosting.co.za>
2017-05-18 15:32:17serhiy.storchakalinkissue30399 messages
2017-05-18 15:32:17serhiy.storchakacreate