Commit b1baef80 authored by Ralf Schmitt's avatar Ralf Schmitt

py3 fixes for test__event.py

parent 4bdcbd50
......@@ -92,7 +92,7 @@ class TestEvent_SetThenClear(greentest.TestCase):
def test(self):
e = Event()
waiters = [gevent.spawn(e.wait) for i in xrange(self.N)]
waiters = [gevent.spawn(e.wait) for i in range(self.N)]
gevent.sleep(0.001)
e.set()
e.clear()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment