From: Richard Oudkerk Date: Mon, 10 Sep 2012 12:00:33 +0000 (+0100) Subject: Issue #15901: Change example to use byte string instead of string X-Git-Tag: v3.2.4rc1~548 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b517596721e3036ce914a8a065500b77ee83bd97;p=thirdparty%2FPython%2Fcpython.git Issue #15901: Change example to use byte string instead of string --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index e93d121a5fcf..18302a792c3d 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1093,7 +1093,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))