mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
11 lines
139 B
Python
11 lines
139 B
Python
import gevent
|
|
from gevent.testing.util import alarm
|
|
|
|
|
|
alarm(3)
|
|
|
|
|
|
with gevent.Timeout(0.01, False):
|
|
while True:
|
|
gevent.sleep(0)
|