diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-06-25 11:37:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 11:37:38 (GMT) |
commit | 84f9c23a12eb091ac5327ebcba0d63794085b7f8 (patch) | |
tree | 93d9f38e95e1a7cf16546c22e26dfa0a39511164 /Lib | |
parent | 4564ebb1e62378d350d5483b0ae5d0d84082af2b (diff) | |
download | cpython-84f9c23a12eb091ac5327ebcba0d63794085b7f8.zip cpython-84f9c23a12eb091ac5327ebcba0d63794085b7f8.tar.gz cpython-84f9c23a12eb091ac5327ebcba0d63794085b7f8.tar.bz2 |
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')
-rw-r--r-- | Lib/test/test_bdb.py | 2 |
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) |