Result of new-style completion matcher.
| 593 | |
| 594 | @sphinx_options(show_inherited_members=True, exclude_inherited_from=["dict"]) |
| 595 | class SimpleMatcherResult(_MatcherResultBase, TypedDict): |
| 596 | """Result of new-style completion matcher.""" |
| 597 | |
| 598 | # note: TypedDict is added again to the inheritance chain |
| 599 | # in order to get __orig_bases__ for documentation |
| 600 | |
| 601 | #: List of candidate completions |
| 602 | completions: Sequence[SimpleCompletion] | Iterator[SimpleCompletion] |
| 603 | |
| 604 | |
| 605 | class _JediMatcherResult(_MatcherResultBase): |
no outgoing calls
no test coverage detected
searching dependent graphs…