Add better error reporting for MemoryErrors caused by str->float conversions.
[python.git] / Include / tupleobject.h
bloba5ab733208b9299dfc4ac6fdc0b9a55ca267fd1c
2 /* Tuple object interface */
4 #ifndef Py_TUPLEOBJECT_H
5 #define Py_TUPLEOBJECT_H
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
11 Another generally useful object type is a tuple of object pointers.
12 For Python, this is an immutable type. C code can change the tuple items
13 (but not their number), and even use tuples are general-purpose arrays of
14 object references, but in general only brand new tuples should be mutated,
15 not ones that might already have been exposed to Python code.
17 *** WARNING *** PyTuple_SetItem does not increment the new item's reference
18 count, but does decrement the reference count of the item it replaces,
19 if not nil. It does *decrement* the reference count if it is *not*
20 inserted in the tuple. Similarly, PyTuple_GetItem does not increment the
21 returned item's reference count.
24 typedef struct {
25 PyObject_VAR_HEAD
26 PyObject *ob_item[1];
28 /* ob_item contains space for 'ob_size' elements.
29 * Items must normally not be NULL, except during construction when
30 * the tuple is not yet visible outside the function that builds it.
32 } PyTupleObject;
34 PyAPI_DATA(PyTypeObject) PyTuple_Type;
36 #define PyTuple_Check(op) \
37 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
38 #define PyTuple_CheckExact(op) (Py_TYPE(op) == &PyTuple_Type)
40 PyAPI_FUNC(PyObject *) PyTuple_New(Py_ssize_t size);
41 PyAPI_FUNC(Py_ssize_t) PyTuple_Size(PyObject *);
42 PyAPI_FUNC(PyObject *) PyTuple_GetItem(PyObject *, Py_ssize_t);
43 PyAPI_FUNC(int) PyTuple_SetItem(PyObject *, Py_ssize_t, PyObject *);
44 PyAPI_FUNC(PyObject *) PyTuple_GetSlice(PyObject *, Py_ssize_t, Py_ssize_t);
45 PyAPI_FUNC(int) _PyTuple_Resize(PyObject **, Py_ssize_t);
46 PyAPI_FUNC(PyObject *) PyTuple_Pack(Py_ssize_t, ...);
47 PyAPI_FUNC(void) _PyTuple_MaybeUntrack(PyObject *);
49 /* Macro, trading safety for speed */
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
51 #define PyTuple_GET_SIZE(op) Py_SIZE(op)
53 /* Macro, *only* to be used to fill in brand new tuples */
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
56 PyAPI_FUNC(int) PyTuple_ClearFreeList(void);
58 #ifdef __cplusplus
60 #endif
61 #endif /* !Py_TUPLEOBJECT_H */