You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2019. It is now read-only.
import gevent
def run_forever():
while True:
gevent.sleep(1)
def main():
rf = gevent.spawn(run_forever)
rf.join()
if __name__ == "__main__":
main()
when press CTRL-C
From callback <bound method loop._prepare_callback of <pypycore.loop object at 0x0000000104027ec0>>:
Traceback (most recent call last):
File ~/pypycore/pypycore.py", line 368, in _prepare_callback
self._run_callbacks()
KeyboardInterrupt
The text was updated successfully, but these errors were encountered:
when press CTRL-C
From callback <bound method loop._prepare_callback of <pypycore.loop object at 0x0000000104027ec0>>:
Traceback (most recent call last):
File ~/pypycore/pypycore.py", line 368, in _prepare_callback
self._run_callbacks()
KeyboardInterrupt
The text was updated successfully, but these errors were encountered: