From 64465334d1adbf40ce2934be3ecd2c9687114d3c Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Tue, 30 Jan 2018 01:49:50 +0000 Subject: [PATCH] Set DEFAULT_CHARSET to ASCII for tests Avoid problems with implicit surfaces in some charsets. --- tests/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/common.py b/tests/common.py index a759aa9..2d62009 100644 --- a/tests/common.py +++ b/tests/common.py @@ -35,6 +35,7 @@ def setup_module(module): 'LC_ALL', 'LC_MESSAGES', 'LC_COLLATE'): if variable in os.environ: del os.environ[variable] + os.environ['DEFAULT_CHARSET'] = 'ASCII' run.external = outer is None import tempfile run.work = tempfile.mktemp() -- 2.40.0