[Python-checkins] r67330 - python/trunk/Doc/library/multiprocessing.rst
georg.brandl
python-checkins at python.org
Sat Nov 22 09:34:15 CET 2008
Author: georg.brandl
Date: Sat Nov 22 09:34:14 2008
New Revision: 67330
Log:
#4364: fix attribute name on ctypes object.
Modified:
python/trunk/Doc/library/multiprocessing.rst
Modified: python/trunk/Doc/library/multiprocessing.rst
==============================================================================
--- python/trunk/Doc/library/multiprocessing.rst (original)
+++ python/trunk/Doc/library/multiprocessing.rst Sat Nov 22 09:34:14 2008
@@ -874,7 +874,7 @@
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 @@
: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`.
More information about the Python-checkins
mailing list