diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-10-20 05:10:44 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-10-20 05:10:44 (GMT) |
commit | 94332cba0f0a020f35590f1c2da23a579e3e9f3a (patch) | |
tree | 8b74e2418ef007e5d51c9b0f7f2d432ebdb5e6f9 /Lib/test/test_logging.py | |
parent | fa27d5f2297b4f3a91b1fe350e760cd4f701d916 (diff) | |
download | cpython-94332cba0f0a020f35590f1c2da23a579e3e9f3a.zip cpython-94332cba0f0a020f35590f1c2da23a579e3e9f3a.tar.gz cpython-94332cba0f0a020f35590f1c2da23a579e3e9f3a.tar.bz2 |
Issue #28480: Adjust or skip tests if multithreading is disabled
Diffstat (limited to 'Lib/test/test_logging.py')
-rw-r--r-- | Lib/test/test_logging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index e45a982..078a86b 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -4304,7 +4304,7 @@ class MiscTestCase(unittest.TestCase): 'logProcesses', 'currentframe', 'PercentStyle', 'StrFormatStyle', 'StringTemplateStyle', 'Filterer', 'PlaceHolder', 'Manager', 'RootLogger', - 'root'} + 'root', 'threading'} support.check__all__(self, logging, blacklist=blacklist) |