Issue #19424: Fix test_warnings for locale encoding unable to encode

"\xe9\u20ac" characters
This commit is contained in:
Victor Stinner 2013-10-29 23:58:05 +01:00
parent a4c704b260
commit c0e07a3ea0
1 changed files with 7 additions and 6 deletions

View File

@ -336,12 +336,13 @@ class WarnTests(BaseTest):
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