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

Serhiy Storchaka webhook-mailer at python.org
Thu Jun 25 07:21:30 EDT 2020


https://github.com/python/cpython/commit/94eee69e9b3a7e7d33142a47ffea560beb8f1596
commit: 94eee69e9b3a7e7d33142a47ffea560beb8f1596
branch: master
author: Serhiy Storchaka <storchaka at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-06-25T14:21:25+03:00
summary:

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

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