diff options
Diffstat (limited to 'Lib/unittest/__init__.py')
-rw-r--r-- | Lib/unittest/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/unittest/__init__.py b/Lib/unittest/__init__.py index 540433d..4b18488 100644 --- a/Lib/unittest/__init__.py +++ b/Lib/unittest/__init__.py @@ -68,6 +68,9 @@ from .signals import installHandler, registerResult, removeResult, removeHandler # IsolatedAsyncioTestCase will be imported lazily. from .loader import makeSuite, getTestCaseNames, findTestCases +# deprecated +_TextTestResult = TextTestResult + # There are no tests here, so don't try to run anything discovered from # introspecting the symbols (e.g. FunctionTestCase). Instead, all our |