School/IKEA_scraper/.venv/Lib/site-packages/gevent/tests/test__joinall.py
Kristofers Solo e1996ea454 Added 'eel'
2021-09-13 18:47:06 +03:00

21 lines
296 B
Python

import gevent
from gevent import testing as greentest
class Test(greentest.TestCase):
def test(self):
def func():
pass
a = gevent.spawn(func)
b = gevent.spawn(func)
gevent.joinall([a, b, a])
if __name__ == '__main__':
greentest.main()