Show More
@@ -623,7 +623,8 b' class CompletionContext(NamedTuple):' | |||||
623 | #: The maximum number of completions that will be used downstream. |
|
623 | #: The maximum number of completions that will be used downstream. | |
624 | #: Matchers can use this information to abort early. |
|
624 | #: Matchers can use this information to abort early. | |
625 | #: The built-in Jedi matcher is currently excepted from this limit. |
|
625 | #: The built-in Jedi matcher is currently excepted from this limit. | |
626 | limit: int |
|
626 | # If not given, return all possible completions. | |
|
627 | limit: Optional[int] | |||
627 |
|
628 | |||
628 | @property |
|
629 | @property | |
629 | @lru_cache(maxsize=None) # TODO change to @cache after dropping Python 3.7 |
|
630 | @lru_cache(maxsize=None) # TODO change to @cache after dropping Python 3.7 |
General Comments 0
You need to be logged in to leave comments.
Login now