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    
gevent / src / gevent / tests / test__joinall.py
Size: Mime:
import gevent


def func():
    pass


a = gevent.spawn(func)
b = gevent.spawn(func)
gevent.joinall([a, b, a])