# no standard tests in this file, ignore
__test__ = False
if __name__ == '__main__':
import eventlet
eventlet.monkey_patch()
import threading
def test():
t = threading.currentThread()
print(t.is_alive())
print(t.isAlive())
t = eventlet.spawn(test)
t.wait()