Closed vxgmichel closed 5 years ago
Also fixes the issue of interrupting a map:
map
await (xs | pipe.map(some_afunc) | pipe.take(10) | pipe.list()) # Might produce: # sys:1: RuntimeWarning: coroutine 'some_afunc' was never awaited # RuntimeWarning: Enable tracemalloc to get the object allocation traceback
Coverage remained the same at 100.0% when pulling 58425318c496dfcc070ef9117182bed5abb83053 on call-operator into 6845b4e66b5404891d7ec681438af243be0efd30 on master.
Also fixes the issue of interrupting a
map
: