This commit is contained in:
Andrew M. Kuchling 2008-07-13 21:43:25 +00:00
parent 8d412f36b5
commit 00f34c69b3
1 changed files with 2 additions and 2 deletions

View File

@ -1791,8 +1791,8 @@ Utility functions
.. 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::