1
0
forked from VimPlug/jedi

Implement type[...]

This commit is contained in:
Dave Halter
2026-05-01 15:21:02 +02:00
parent 0702da22f2
commit 418598d8c1
4 changed files with 22 additions and 1 deletions
+4
View File
@@ -149,6 +149,10 @@ class InferenceState:
def typing_tuple(self):
return self.typing_module.py__getattribute__("Tuple")
@inference_state_function_cache()
def typing_type(self):
return self.typing_module.py__getattribute__("Type")
def reset_recursion_limitations(self):
self.recursion_detector = recursion.RecursionDetector()
self.execution_recursion_detector = recursion.ExecutionRecursionDetector(self)