]> granicus.if.org Git - python/commitdiff
#4364: fix attribute name on ctypes object.
authorGeorg Brandl <georg@python.org>
Sat, 22 Nov 2008 08:34:14 +0000 (08:34 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 22 Nov 2008 08:34:14 +0000 (08:34 +0000)
Doc/library/multiprocessing.rst

index 17cbb767408cfd694fc8e8beffd226c763ebee0c..d27e97f89c38f975749114eeceb04c6e565a1892 100644 (file)
@@ -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`.