[Python-checkins] bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)

Miss Islington (bot) webhook-mailer at python.org
Thu Jun 25 07:37:43 EDT 2020


https://github.com/python/cpython/commit/84f9c23a12eb091ac5327ebcba0d63794085b7f8
commit: 84f9c23a12eb091ac5327ebcba0d63794085b7f8
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-06-25T04:37:38-07:00
summary:

bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)

(cherry picked from commit 94eee69e9b3a7e7d33142a47ffea560beb8f1596)

Co-authored-by: Serhiy Storchaka <storchaka at gmail.com>

files:
M Lib/test/test_bdb.py

diff --git a/Lib/test/test_bdb.py b/Lib/test/test_bdb.py
index 6e82cce1f411b..ae16880567882 100644
--- a/Lib/test/test_bdb.py
+++ b/Lib/test/test_bdb.py
@@ -726,7 +726,7 @@ def main():
                 ('line', 2, 'tfunc_import'), ('step', ),
                 ('line', 3, 'tfunc_import'), ('quit', ),
             ]
-            skip = ('importlib*', 'zipimport', TEST_MODULE)
+            skip = ('importlib*', 'zipimport', 'encodings.*', TEST_MODULE)
             with TracerRun(self, skip=skip) as tracer:
                 tracer.runcall(tfunc_import)
 



More information about the Python-checkins mailing list