From: Georg Brandl Date: Sat, 22 Nov 2008 08:34:14 +0000 (+0000) Subject: #4364: fix attribute name on ctypes object. X-Git-Tag: v2.7a1~2638 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b053f991b4d0b8832f95751b3a49eed3f2e49cdb;p=python #4364: fix attribute name on ctypes object. --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 17cbb76740..d27e97f89c 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -874,7 +874,7 @@ inherited by child processes. Note that *lock* is a keyword only argument. - Note that an array of :data:`ctypes.c_char` has *value* and *rawvalue* + Note that an array of :data:`ctypes.c_char` has *value* and *raw* attributes which allow one to use it to store and retrieve strings. @@ -923,7 +923,7 @@ processes. :func:`Value` instead to make sure that access is automatically synchronized using a lock. - Note that an array of :data:`ctypes.c_char` has ``value`` and ``rawvalue`` + Note that an array of :data:`ctypes.c_char` has ``value`` and ``raw`` attributes which allow one to use it to store and retrieve strings -- see documentation for :mod:`ctypes`.