def test_simpletimeout_doesnt_expire(self): with pipe() as (r, w): with gevent.Timeout(SHORTTIME, False) as t: w.put('') r.get(timeout=t) return assert False