1
0
forked from VimPlug/jedi

Remove some docstrings that are outdated

This commit is contained in:
Dave Halter
2019-08-14 23:51:49 +02:00
parent 9cc3b18d52
commit a23bbbfbb9
2 changed files with 0 additions and 11 deletions

View File

@@ -169,14 +169,6 @@ class MethodContext(FunctionContext):
class FunctionExecutionContext(TreeContext):
"""
This class is used to evaluate functions and their returns.
This is the most complicated class, because it contains the logic to
transfer parameters. It is even more complicated, because there may be
multiple calls to functions and recursion has to be avoided. But this is
responsibility of the recursion module.
"""
function_execution_filter = FunctionExecutionFilter
def __init__(self, evaluator, parent_context, function_context, var_args):

View File

@@ -59,9 +59,6 @@ class AnonymousInstanceArguments(AnonymousArguments):
class AbstractInstanceContext(Context):
"""
This class is used to evaluate instances.
"""
api_type = u'instance'
def __init__(self, evaluator, parent_context, class_context, var_args):