diff options
Diffstat (limited to 'Doc/includes/mp_workers.py')
-rw-r--r-- | Doc/includes/mp_workers.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/includes/mp_workers.py b/Doc/includes/mp_workers.py index e66d97bd50..3b92269f89 100644 --- a/Doc/includes/mp_workers.py +++ b/Doc/includes/mp_workers.py @@ -1,16 +1,3 @@ -# -# Simple example which uses a pool of workers to carry out some tasks. -# -# Notice that the results will probably not come out of the output -# queue in the same in the same order as the corresponding tasks were -# put on the input queue. If it is important to get the results back -# in the original order then consider using `Pool.map()` or -# `Pool.imap()` (which will save on the amount of code needed anyway). -# -# Copyright (c) 2006-2008, R Oudkerk -# All rights reserved. -# - import time import random |