[ctypes-commit] ctypes/source ctypes.h,1.104,1.105
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-06-09 05:50:17
|
Update of /cvsroot/ctypes/ctypes/source In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv31923 Modified Files: ctypes.h Log Message: Correct comment. Index: ctypes.h =================================================================== RCS file: /cvsroot/ctypes/ctypes/source/ctypes.h,v retrieving revision 1.104 retrieving revision 1.105 diff -C2 -d -r1.104 -r1.105 *** ctypes.h 18 Apr 2006 20:18:31 -0000 1.104 --- ctypes.h 9 Jun 2006 05:50:10 -0000 1.105 *************** *** 60,64 **** Py_ssize_t b_index; /* index of this object into base's b_object list */ ! PyObject *b_objects; /* list of references we need to keep */ union value b_value; }; --- 60,64 ---- Py_ssize_t b_index; /* index of this object into base's b_object list */ ! PyObject *b_objects; /* dictionary of references we need to keep, or Py_None */ union value b_value; }; |