commit | c3a2c5980688711e804129abe67d361b295f419d | [log] [tgz] |
---|---|---|
author | Richard Oudkerk <shibturn@gmail.com> | Mon Sep 10 13:06:02 2012 +0100 |
committer | Richard Oudkerk <shibturn@gmail.com> | Mon Sep 10 13:06:02 2012 +0100 |
tree | 7169b7062742c8abe969d055617c56c9f7f3f519 | |
parent | 879329d66ed3ab16e33636355b8b26643ae26251 [diff] | |
parent | b517596721e3036ce914a8a065500b77ee83bd97 [diff] |
Merge
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 33a3511..f2b2a8a 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst
@@ -1147,7 +1147,7 @@ n = Value('i', 7) x = Value(c_double, 1.0/3.0, lock=False) - s = Array('c', 'hello world', lock=lock) + s = Array('c', b'hello world', lock=lock) A = Array(Point, [(1.875,-6.25), (-5.75,2.0), (2.375,9.5)], lock=lock) p = Process(target=modify, args=(n, x, s, A))