Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,10 @@ multiprocessing pool and compare its results to the one of a gevent pool.

<pre>
<code class="python">
import time
import gevent

def echo(i):
time.sleep(0.001)
gevent.sleep(0.001)
return i

# Non Deterministic Process Pool
Expand Down