[Python-checkins] r64928 - python/trunk/Doc/library/ctypes.rst

andrew.kuchling python-checkins at python.org
Sun Jul 13 23:43:26 CEST 2008


Author: andrew.kuchling
Date: Sun Jul 13 23:43:25 2008
New Revision: 64928

Log:
Re-word

Modified:
   python/trunk/Doc/library/ctypes.rst

Modified: python/trunk/Doc/library/ctypes.rst
==============================================================================
--- python/trunk/Doc/library/ctypes.rst	(original)
+++ python/trunk/Doc/library/ctypes.rst	Sun Jul 13 23:43:25 2008
@@ -1791,8 +1791,8 @@
 .. function:: byref(obj[, offset])
 
    Returns a light-weight pointer to ``obj``, which must be an
-   instance of a ctypes type.  ``offset`` defaults to zero, it must be
-   an integer which is added to the internal pointer value.
+   instance of a ctypes type.  ``offset`` defaults to zero, and must be
+   an integer that will be added to the internal pointer value.
 
    ``byref(obj, offset)`` corresponds to this C code::
 


More information about the Python-checkins mailing list