summaryrefslogtreecommitdiff
path: root/Lib/test/test_bdb.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-06-25 04:41:42 -0700
committerGitHub <noreply@github.com>2020-06-25 04:41:42 -0700
commitfdf6872f3893647e52f123ba62431aaf9f24ad3a (patch)
treec81a9a11015e0e0cb5094832237b292ed5716b48 /Lib/test/test_bdb.py
parent16e79a47ca3b4efb2300f24aa084c20bb5e8ae0d (diff)
downloadcpython-git-fdf6872f3893647e52f123ba62431aaf9f24ad3a.tar.gz
bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)
(cherry picked from commit 94eee69e9b3a7e7d33142a47ffea560beb8f1596) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
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 6e82cce1f4..ae16880567 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)