get_params -> get_executed_params where possible

This commit is contained in:
Dave Halter
2018-08-05 13:53:57 +02:00
parent 3d55b2d826
commit 1456a156a6
4 changed files with 9 additions and 6 deletions

View File

@@ -334,6 +334,9 @@ class BoundMethod(AbstractFunction):
return InstanceFunctionExecution(
self._instance, self.parent_context, self, arguments)
def __repr__(self):
return '<%s: %s>' % (self.__class__.__name__, self._function)
class CompiledBoundMethod(compiled.CompiledObject):
def __init__(self, func):