Message 300802 - Python tracker

Message300802

Author Nathan Buckner
Recipients Nathan Buckner, ezio.melotti, vstinner
Date 2017-08-24.20:37:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503607033.04.0.29955978966.issue31273@psf.upfronthosting.co.za>
In-reply-to
Content
Unicode support for TestCase.skip is broken because the caught SkipTest exception is passed through a str call.
except SkipTest as e:
    self._addSkip(result, str(e))
Could be fixed with by changing to unicode(e)
History
Date User Action Args
2017-08-24 20:37:13Nathan Bucknersetrecipients: + Nathan Buckner, vstinner, ezio.melotti
2017-08-24 20:37:13Nathan Bucknersetmessageid: <1503607033.04.0.29955978966.issue31273@psf.upfronthosting.co.za>
2017-08-24 20:37:12Nathan Bucknerlinkissue31273 messages
2017-08-24 20:37:12Nathan Bucknercreate