mirror of
https://github.com/davidhalter/jedi.git
synced 2026-02-20 08:58:26 +08:00
moved recursion parts from helper to recursion.py
This commit is contained in:
@@ -20,6 +20,7 @@ import cache
|
||||
import builtin
|
||||
import dynamic
|
||||
import helpers
|
||||
import recursion
|
||||
import debug
|
||||
import evaluate
|
||||
import common
|
||||
@@ -388,7 +389,7 @@ class Execution(Executable):
|
||||
responsibility of the decorators.
|
||||
"""
|
||||
@cache.memoize_default(default=[])
|
||||
@helpers.ExecutionRecursionDecorator
|
||||
@recursion.ExecutionRecursionDecorator
|
||||
def get_return_types(self, evaluate_generator=False):
|
||||
""" Get the return types of a function. """
|
||||
stmts = []
|
||||
|
||||
Reference in New Issue
Block a user