You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/gevent/tests/_import_wait.py

27 lines
570 B

# test__import_wait.py calls this via an import statement,
# so all of this is happening with import locks held (especially on py2)
import gevent
def fn2():
return 2
# A blocking function doesn't raise LoopExit
def fn():
return gevent.wait([gevent.spawn(fn2), gevent.spawn(fn2)])
gevent.spawn(fn).get()
# Marshalling the traceback across greenlets doesn't
# raise LoopExit
def raise_name_error():
raise NameError("ThisIsExpected")
try:
gevent.spawn(raise_name_error).get()
raise AssertionError("Should fail")
except NameError as e:
x = e