diff options
Diffstat (limited to 'Include/tupleobject.h')
-rw-r--r-- | Include/tupleobject.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Include/tupleobject.h b/Include/tupleobject.h index da76891..992c770 100644 --- a/Include/tupleobject.h +++ b/Include/tupleobject.h @@ -61,7 +61,10 @@ extern PyObject *PyTuple_GetSlice Py_PROTO((PyObject *, int, int)); extern int _PyTuple_Resize Py_PROTO((PyObject **, int, int)); /* Macro, trading safety for speed */ -#define PyTuple_GET_ITEM(op, i) ((op)->ob_item[i]) +#define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i]) + +/* Macro, *only* to be used to fill in brand new tuples */ +#define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v) #ifdef __cplusplus } |