You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed flat_map with mapper returning an asyncio Future (ReactiveX#460)
As of python 3.7 Asyncio Futures implement an __iter__ method,
probably for backward compatibility. As a consequence, asyncio
futures are also iterable. So we must check if the mapper result
is a Future before checking if it is Iterable.
FixesReactiveX#457
0 commit comments