diff --git a/tutorial.md b/tutorial.md index bcf78f9..f9eb06e 100644 --- a/tutorial.md +++ b/tutorial.md @@ -251,10 +251,10 @@ multiprocessing pool and compare its results to the one of a gevent pool.
-import time
+import gevent
def echo(i):
- time.sleep(0.001)
+ gevent.sleep(0.001)
return i
# Non Deterministic Process Pool