changeset: 86770:05e8dde3229c user: Victor Stinner date: Tue Oct 29 23:58:05 2013 +0100 files: Lib/test/test_warnings.py description: Issue #19424: Fix test_warnings for locale encoding unable to encode "\xe9\u20ac" characters diff -r c7326aa0b69c -r 05e8dde3229c Lib/test/test_warnings.py --- a/Lib/test/test_warnings.py Tue Oct 29 23:43:41 2013 +0100 +++ b/Lib/test/test_warnings.py Tue Oct 29 23:58:05 2013 +0100 @@ -336,12 +336,13 @@ module=self.module) as w: self.module.resetwarnings() self.module.filterwarnings("always", category=UserWarning) - - self.module.warn_explicit("text", UserWarning, "nonascii\xe9\u20ac", 1) - self.assertEqual(w[-1].filename, "nonascii\xe9\u20ac") - - self.module.warn_explicit("text", UserWarning, "surrogate\udc80", 1) - self.assertEqual(w[-1].filename, "surrogate\udc80") + for filename in ("nonascii\xe9\u20ac", "surrogate\udc80"): + try: + os.fsencode(filename) + except UnicodeEncodeError: + continue + self.module.warn_explicit("text", UserWarning, filename, 1) + self.assertEqual(w[-1].filename, filename) def test_warn_explicit_type_errors(self): # warn_explicit() should error out gracefully if it is given objects