Add TestCase.longMessage to stdlib/2/unittest.pyi (#1875)

Fixes #1874.
This commit is contained in:
Matt Bogosian
2018-02-11 16:16:35 -08:00
committed by Guido van Rossum
parent fe5e12795f
commit afc84c119c

View File

@@ -53,6 +53,7 @@ class _AssertRaisesContext(_AssertRaisesBaseContext):
class TestCase(Testable):
failureException = ... # type: Type[BaseException]
longMessage = ... # type: bool
def __init__(self, methodName: str = ...) -> None: ...
def setUp(self) -> None: ...
def tearDown(self) -> None: ...