From: Andrew Svetlov Date: Tue, 20 Nov 2012 14:12:38 +0000 (+0200) Subject: Fix typo in multiprocessing documentation, thanks to Dmitry Tolstoy from docs@ X-Git-Tag: v3.3.1rc1~615 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23089ab1db23333457149b567c125c10445550b6;p=python Fix typo in multiprocessing documentation, thanks to Dmitry Tolstoy from docs@ --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 82c8610418..a783efcdc2 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -279,7 +279,7 @@ For example:: 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]"