Variable size/Set: Difference between revisions

Line 41:
For compatibility with the calling conventions of external C functions, the [http://docs.python.org/library/ctypes.html?highlight=ctypes#module-ctypes ctypes module] has functions that map data types and sizes between Python and C:
<table class="docutils" border="1">
<lang python><tr>
<th class="head">ctypes type</th>
<th class="head">C type</th>
Line 103:
<tr>
<td>c_ulonglong</td>
<td>unsigned __int64 or unsigned long long</langtd>
unsigned long <td>int/long</td>
<lang python> <td>int/long</td>
</tr>
<tr>
Line 136 ⟶ 135:
<td>void *</td>
<td>int/long or None</td>
</tr></lang>
</table>
 
Anonymous user