This commit is contained in:
Philip House
2016-06-21 10:16:24 -05:00
committed by Guido van Rossum
parent 186b313f35
commit d2db605008
2 changed files with 4 additions and 0 deletions

View File

@@ -93,6 +93,8 @@ class TestCase(Testable):
msg: object = ...) -> None: ...
def assertGreaterEqual(self, first: Any, second: Any,
msg: object = ...) -> None: ...
def assertListEqual(self, first: List[Any], second: List[Any],
msg: object = ...) -> None: ...
def assertLess(self, first: Any, second: Any,
msg: object = ...) -> None: ...
def assertLessEqual(self, first: Any, second: Any,

View File

@@ -96,6 +96,8 @@ class TestCase(Testable):
msg: object = ...) -> None: ...
def assertGreaterEqual(self, first: Any, second: Any,
msg: object = ...) -> None: ...
def assertListEqual(self, first: List[Any], second: List[Any],
msg: object = ...) -> None: ...
def assertLess(self, first: Any, second: Any,
msg: object = ...) -> None: ...
def assertLessEqual(self, first: Any, second: Any,