Commit 94332cba authored by Martin Panter's avatar Martin Panter

Issue #28480: Adjust or skip tests if multithreading is disabled

parent fa27d5f2
import asyncio
import inspect
import sys
import types
......@@ -6,6 +5,9 @@ import unittest
from unittest import mock
from test.support import import_module
asyncio = import_module("asyncio")
class AwaitException(Exception):
pass
......
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment