diff options
author | Georg Brandl <georg@python.org> | 2008-11-22 08:34:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-11-22 08:34:14 (GMT) |
commit | b053f991b4d0b8832f95751b3a49eed3f2e49cdb (patch) | |
tree | f4e4c145bff6966d20bc2e6255a8234ae8ea5c0e | |
parent | bfc51567f5ca1af7e1950519b8b34037a4f11bb0 (diff) | |
download | cpython-b053f991b4d0b8832f95751b3a49eed3f2e49cdb.zip cpython-b053f991b4d0b8832f95751b3a49eed3f2e49cdb.tar.gz cpython-b053f991b4d0b8832f95751b3a49eed3f2e49cdb.tar.bz2 |
#4364: fix attribute name on ctypes object.
-rw-r--r-- | Doc/library/multiprocessing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 17cbb76..d27e97f 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`. |