def non_gevent_sleep(timeout): try: gevent.monkey.saved['time']['sleep'](timeout) except KeyError: time.sleep(timeout)