diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2012-09-10 12:06:02 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2012-09-10 12:06:02 (GMT) |
commit | c3a2c5980688711e804129abe67d361b295f419d (patch) | |
tree | 7169b7062742c8abe969d055617c56c9f7f3f519 /Doc/library/multiprocessing.rst | |
parent | 879329d66ed3ab16e33636355b8b26643ae26251 (diff) | |
parent | b517596721e3036ce914a8a065500b77ee83bd97 (diff) | |
download | cpython-c3a2c5980688711e804129abe67d361b295f419d.zip cpython-c3a2c5980688711e804129abe67d361b295f419d.tar.gz cpython-c3a2c5980688711e804129abe67d361b295f419d.tar.bz2 |
Merge
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ process:: 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)) |