diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_strlit.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/test/test_strlit.py b/Lib/test/test_strlit.py index fb9cdbb..dbf8652 100644 --- a/Lib/test/test_strlit.py +++ b/Lib/test/test_strlit.py @@ -32,6 +32,7 @@ import sys import shutil import tempfile import unittest +import test.support TEMPLATE = r"""# coding: %s @@ -142,7 +143,8 @@ class TestLiterals(unittest.TestCase): self.check_encoding("latin9") +def test_main(): + test.support.run_unittest(__name__) + if __name__ == "__main__": - # Hack so that error messages containing non-ASCII can be printed - sys.stdout._encoding = sys.stderr._encoding = "utf-8" - unittest.main() + test_main() |