[issue31273] Unicode support in TestCase.skip

2017-10-28 Thread Berker Peksag
Change by Berker Peksag : -- components: +Library (Lib) -Tests, Unicode nosy: +michael.foord, rbcollins stage: -> needs patch type: crash -> behavior ___ Python tracker ___ ___

[issue31273] Unicode support in TestCase.skip

2017-08-24 Thread Nathan Buckner
New submission from Nathan Buckner: 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) -- components: Tests, Unicode files: