mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Add __all__ for modules beginning with 'c' and 'd' (#7303)
This commit is contained in:
@@ -2,6 +2,42 @@ import types
|
||||
import unittest
|
||||
from typing import Any, Callable, NamedTuple
|
||||
|
||||
__all__ = [
|
||||
"register_optionflag",
|
||||
"DONT_ACCEPT_TRUE_FOR_1",
|
||||
"DONT_ACCEPT_BLANKLINE",
|
||||
"NORMALIZE_WHITESPACE",
|
||||
"ELLIPSIS",
|
||||
"SKIP",
|
||||
"IGNORE_EXCEPTION_DETAIL",
|
||||
"COMPARISON_FLAGS",
|
||||
"REPORT_UDIFF",
|
||||
"REPORT_CDIFF",
|
||||
"REPORT_NDIFF",
|
||||
"REPORT_ONLY_FIRST_FAILURE",
|
||||
"REPORTING_FLAGS",
|
||||
"FAIL_FAST",
|
||||
"Example",
|
||||
"DocTest",
|
||||
"DocTestParser",
|
||||
"DocTestFinder",
|
||||
"DocTestRunner",
|
||||
"OutputChecker",
|
||||
"DocTestFailure",
|
||||
"UnexpectedException",
|
||||
"DebugRunner",
|
||||
"testmod",
|
||||
"testfile",
|
||||
"run_docstring_examples",
|
||||
"DocTestSuite",
|
||||
"DocFileSuite",
|
||||
"set_unittest_reportflags",
|
||||
"script_from_examples",
|
||||
"testsource",
|
||||
"debug_src",
|
||||
"debug",
|
||||
]
|
||||
|
||||
class TestResults(NamedTuple):
|
||||
failed: int
|
||||
attempted: int
|
||||
|
||||
Reference in New Issue
Block a user