Skip to content

Instantly share code, notes, and snippets.

@jamiesun
Forked from jhorman/twisted_sleep.py
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiesun/1ca6dd91964ce49b8ce3 to your computer and use it in GitHub Desktop.
Save jamiesun/1ca6dd91964ce49b8ce3 to your computer and use it in GitHub Desktop.
def sleep(secs):
d = Deferred()
reactor.callLater(secs, d.callback, None)
return d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment