[Python-checkins] cpython (3.3): Fix typo in multiprocessing documentation, thanks to Dmitry Tolstoy from docs@

andrew.svetlov python-checkins at python.org
Tue Nov 20 15:14:02 CET 2012


http://hg.python.org/cpython/rev/4537dd27b2dc
changeset:   80527:4537dd27b2dc
branch:      3.3
parent:      80521:90283c6f94fc
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Tue Nov 20 16:12:38 2012 +0200
summary:
  Fix typo in multiprocessing documentation, thanks to Dmitry Tolstoy from docs@

files:
  Doc/library/multiprocessing.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -279,7 +279,7 @@
        return x*x
 
    if __name__ == '__main__':
-       with Pool(processes=4) as pool         # start 4 worker processes
+       with Pool(processes=4) as pool:        # start 4 worker processes
            result = pool.apply_async(f, [10]) # evaluate "f(10)" asynchronously
            print(result.get(timeout=1))       # prints "100" unless your computer is *very* slow
            print(pool.map(f, range(10)))      # prints "[0, 1, 4,..., 81]"

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list