From: Serhiy Storchaka Date: Thu, 25 Jun 2020 11:21:25 +0000 (+0300) Subject: bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136) X-Git-Tag: v3.10.0a1~517 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=94eee69e9b3a7e7d33142a47ffea560beb8f1596;p=thirdparty%2FPython%2Fcpython.git bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136) --- diff --git a/Lib/test/test_bdb.py b/Lib/test/test_bdb.py index 6e82cce1f411..ae1688056788 100644 --- a/Lib/test/test_bdb.py +++ b/Lib/test/test_bdb.py @@ -726,7 +726,7 @@ class StateTestCase(BaseTestCase): ('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)