Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
async-promises / iterate_promise.py
Size: Mime:
# flake8: noqa


def iterate_promise(promise):
    if not promise.is_fulfilled:
        yield from promise.future
    assert promise.is_fulfilled
    return promise.get()