blob: cf1c7902828d7d28318b2f568258e0f90580cc26 [file] [log] [blame]
Georg Brandlf6842722008-01-19 22:08:21 +00001.. highlightlang:: c
2
3.. _tupleobjects:
4
5Tuple Objects
6-------------
7
8.. index:: object: tuple
9
10
11.. ctype:: PyTupleObject
12
13 This subtype of :ctype:`PyObject` represents a Python tuple object.
14
15
16.. cvar:: PyTypeObject PyTuple_Type
17
18 .. index:: single: TupleType (in module types)
19
20 This instance of :ctype:`PyTypeObject` represents the Python tuple type; it is
21 the same object as ``tuple`` and ``types.TupleType`` in the Python layer..
22
23
24.. cfunction:: int PyTuple_Check(PyObject *p)
25
26 Return true if *p* is a tuple object or an instance of a subtype of the tuple
27 type.
28
29 .. versionchanged:: 2.2
30 Allowed subtypes to be accepted.
31
32
33.. cfunction:: int PyTuple_CheckExact(PyObject *p)
34
35 Return true if *p* is a tuple object, but not an instance of a subtype of the
36 tuple type.
37
38 .. versionadded:: 2.2
39
40
41.. cfunction:: PyObject* PyTuple_New(Py_ssize_t len)
42
43 Return a new tuple object of size *len*, or *NULL* on failure.
44
Jeroen Ruigrok van der Werven089c5cd2009-04-25 17:59:03 +000045 .. versionchanged:: 2.5
46 This function used an :ctype:`int` type for *len*. This might require
47 changes in your code for properly supporting 64-bit systems.
48
Georg Brandlf6842722008-01-19 22:08:21 +000049
50.. cfunction:: PyObject* PyTuple_Pack(Py_ssize_t n, ...)
51
52 Return a new tuple object of size *n*, or *NULL* on failure. The tuple values
53 are initialized to the subsequent *n* C arguments pointing to Python objects.
54 ``PyTuple_Pack(2, a, b)`` is equivalent to ``Py_BuildValue("(OO)", a, b)``.
55
56 .. versionadded:: 2.4
57
Jeroen Ruigrok van der Werven089c5cd2009-04-25 17:59:03 +000058 .. versionchanged:: 2.5
59 This function used an :ctype:`int` type for *n*. This might require
60 changes in your code for properly supporting 64-bit systems.
61
Georg Brandlf6842722008-01-19 22:08:21 +000062
63.. cfunction:: Py_ssize_t PyTuple_Size(PyObject *p)
64
65 Take a pointer to a tuple object, and return the size of that tuple.
66
Jeroen Ruigrok van der Werven089c5cd2009-04-25 17:59:03 +000067 .. versionchanged:: 2.5
68 This function returned an :ctype:`int` type. This might require changes
69 in your code for properly supporting 64-bit systems.
70
Georg Brandlf6842722008-01-19 22:08:21 +000071
72.. cfunction:: Py_ssize_t PyTuple_GET_SIZE(PyObject *p)
73
74 Return the size of the tuple *p*, which must be non-*NULL* and point to a tuple;
75 no error checking is performed.
76
77
78.. cfunction:: PyObject* PyTuple_GetItem(PyObject *p, Py_ssize_t pos)
79
80 Return the object at position *pos* in the tuple pointed to by *p*. If *pos* is
81 out of bounds, return *NULL* and sets an :exc:`IndexError` exception.
82
Jeroen Ruigrok van der Werven089c5cd2009-04-25 17:59:03 +000083 .. versionchanged:: 2.5
84 This function used an :ctype:`int` type for *pos*. This might require
85 changes in your code for properly supporting 64-bit systems.
86
Georg Brandlf6842722008-01-19 22:08:21 +000087
88.. cfunction:: PyObject* PyTuple_GET_ITEM(PyObject *p, Py_ssize_t pos)
89
90 Like :cfunc:`PyTuple_GetItem`, but does no checking of its arguments.
91
92
93.. cfunction:: PyObject* PyTuple_GetSlice(PyObject *p, Py_ssize_t low, Py_ssize_t high)
94
95 Take a slice of the tuple pointed to by *p* from *low* to *high* and return it
96 as a new tuple.
97
Jeroen Ruigrok van der Werven089c5cd2009-04-25 17:59:03 +000098 .. versionchanged:: 2.5
99 This function used an :ctype:`int` type for *low* and *high*. This might
100 require changes in your code for properly supporting 64-bit systems.
101
Georg Brandlf6842722008-01-19 22:08:21 +0000102
103.. cfunction:: int PyTuple_SetItem(PyObject *p, Py_ssize_t pos, PyObject *o)
104
105 Insert a reference to object *o* at position *pos* of the tuple pointed to by
106 *p*. Return ``0`` on success.
107
108 .. note::
109
110 This function "steals" a reference to *o*.
111
Jeroen Ruigrok van der Werven089c5cd2009-04-25 17:59:03 +0000112 .. versionchanged:: 2.5
113 This function used an :ctype:`int` type for *pos*. This might require
114 changes in your code for properly supporting 64-bit systems.
115
Georg Brandlf6842722008-01-19 22:08:21 +0000116
117.. cfunction:: void PyTuple_SET_ITEM(PyObject *p, Py_ssize_t pos, PyObject *o)
118
119 Like :cfunc:`PyTuple_SetItem`, but does no error checking, and should *only* be
120 used to fill in brand new tuples.
121
122 .. note::
123
124 This function "steals" a reference to *o*.
125
126
127.. cfunction:: int _PyTuple_Resize(PyObject **p, Py_ssize_t newsize)
128
129 Can be used to resize a tuple. *newsize* will be the new length of the tuple.
130 Because tuples are *supposed* to be immutable, this should only be used if there
131 is only one reference to the object. Do *not* use this if the tuple may already
132 be known to some other part of the code. The tuple will always grow or shrink
133 at the end. Think of this as destroying the old tuple and creating a new one,
134 only more efficiently. Returns ``0`` on success. Client code should never
135 assume that the resulting value of ``*p`` will be the same as before calling
136 this function. If the object referenced by ``*p`` is replaced, the original
137 ``*p`` is destroyed. On failure, returns ``-1`` and sets ``*p`` to *NULL*, and
138 raises :exc:`MemoryError` or :exc:`SystemError`.
139
140 .. versionchanged:: 2.2
141 Removed unused third parameter, *last_is_sticky*.
Christian Heimes3b718a72008-02-14 12:47:33 +0000142
Jeroen Ruigrok van der Werven089c5cd2009-04-25 17:59:03 +0000143 .. versionchanged:: 2.5
144 This function used an :ctype:`int` type for *newsize*. This might
145 require changes in your code for properly supporting 64-bit systems.
146
Christian Heimes3b718a72008-02-14 12:47:33 +0000147
Georg Brandl27cca3c2008-02-17 15:14:10 +0000148.. cfunction:: int PyTuple_ClearFreeList(void)
Christian Heimes3b718a72008-02-14 12:47:33 +0000149
150 Clear the free list. Return the total number of freed items.
151
152 .. versionadded:: 2.6