summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bdb.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-06-25 11:21:25 (GMT)
committerGitHub <noreply@github.com>2020-06-25 11:21:25 (GMT)
commit94eee69e9b3a7e7d33142a47ffea560beb8f1596 (patch)
tree84485902d1a8dfe4447441ee7c745ddf2b33fcc9 /Lib/test/test_bdb.py
parentf7ba40b505989495c3585ed782070bdae56330ad (diff)
downloadcpython-94eee69e9b3a7e7d33142a47ffea560beb8f1596.zip
cpython-94eee69e9b3a7e7d33142a47ffea560beb8f1596.tar.gz
cpython-94eee69e9b3a7e7d33142a47ffea560beb8f1596.tar.bz2
bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)
Diffstat (limited to 'Lib/test/test_bdb.py')
-rw-r--r--Lib/test/test_bdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bdb.py b/Lib/test/test_bdb.py
index 6e82cce..ae16880 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)