mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -22,15 +22,15 @@ class TextTestRunner:
|
||||
resultclass: _ResultClassType
|
||||
def __init__(
|
||||
self,
|
||||
stream: TextIO | None = ...,
|
||||
descriptions: bool = ...,
|
||||
verbosity: int = ...,
|
||||
failfast: bool = ...,
|
||||
buffer: bool = ...,
|
||||
resultclass: _ResultClassType | None = ...,
|
||||
warnings: type[Warning] | None = ...,
|
||||
stream: TextIO | None = None,
|
||||
descriptions: bool = True,
|
||||
verbosity: int = 1,
|
||||
failfast: bool = False,
|
||||
buffer: bool = False,
|
||||
resultclass: _ResultClassType | None = None,
|
||||
warnings: type[Warning] | None = None,
|
||||
*,
|
||||
tb_locals: bool = ...,
|
||||
tb_locals: bool = False,
|
||||
) -> None: ...
|
||||
def _makeResult(self) -> unittest.result.TestResult: ...
|
||||
def run(self, test: unittest.suite.TestSuite | unittest.case.TestCase) -> unittest.result.TestResult: ...
|
||||
|
||||
Reference in New Issue
Block a user