Now that #23 has landed it seems fit that we evaluate the _MultiCall type.
Afaict this class contains a single method execute() other then __init__ (and __repr__ but who uses it?) and that method was only necessary for the original recursive implementation.
I'm wondering can we simplify the whole thing into a simple function?
Reasons for:
Now that #23 has landed it seems fit that we evaluate the
_MultiCalltype.Afaict this class contains a single method
execute()other then__init__(and__repr__but who uses it?) and that method was only necessary for the original recursive implementation.I'm wondering can we simplify the whole thing into a simple function?
Reasons for:
_MultiCallkeeps no state since it's execute method is always called directly after instantiation_MultiCallinstances are never reused