From: Barry Warsaw Date: Mon, 6 Jan 1997 22:44:27 +0000 (+0000) Subject: added PyTuple_GET_SIZE macro X-Git-Tag: v1.5a1~578 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c5494a1b925d1040c82a1dc4478de510a1c88b5;p=python added PyTuple_GET_SIZE macro --- diff --git a/Include/tupleobject.h b/Include/tupleobject.h index f5a7fa5676..506f96532f 100644 --- a/Include/tupleobject.h +++ b/Include/tupleobject.h @@ -69,6 +69,7 @@ extern int _PyTuple_Resize Py_PROTO((PyObject **, int, int)); /* Macro, trading safety for speed */ #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i]) +#define PyTuple_GET_SIZE(op) (((PyTupleObject *)(op))->ob_size) /* Macro, *only* to be used to fill in brand new tuples */ #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)