タプルオブジェクト (tuple object)¶
-
PyTypeObject PyTuple_Type¶
- 次に属します: Stable ABI.
この
PyTypeObject
のインスタンスは Python のタプル型を表現します; Python レイヤにおけるtuple
と同じオブジェクトです。
-
PyObject *PyTuple_New(Py_ssize_t len)¶
- 戻り値: 新しい参照。 次に属します: Stable ABI.
Return a new tuple object of size len, or
NULL
on failure.
-
PyObject *PyTuple_Pack(Py_ssize_t n, ...)¶
- 戻り値: 新しい参照。 次に属します: Stable ABI.
Return a new tuple object of size n, or
NULL
on failure. The tuple values are initialized to the subsequent n C arguments pointing to Python objects.PyTuple_Pack(2, a, b)
is equivalent toPy_BuildValue("(OO)", a, b)
.
-
Py_ssize_t PyTuple_Size(PyObject *p)¶
- 次に属します: Stable ABI.
Take a pointer to a tuple object, and return the size of that tuple.
-
Py_ssize_t PyTuple_GET_SIZE(PyObject *p)¶
Return the size of the tuple p, which must be non-
NULL
and point to a tuple; no error checking is performed.
-
PyObject *PyTuple_GetItem(PyObject *p, Py_ssize_t pos)¶
- 戻り値: 借用参照。 次に属します: Stable ABI.
p の指すタプルオブジェクト内の、位置 pos にあるオブジェクトを返します。 pos が負であるか範囲を超えている場合、
NULL
を返してIndexError
例外をセットします。
-
PyObject *PyTuple_GET_ITEM(PyObject *p, Py_ssize_t pos)¶
- 戻り値: 借用参照。
PyTuple_GetItem()
に似ていますが、引数に対するエラーチェックを行いません。
-
PyObject *PyTuple_GetSlice(PyObject *p, Py_ssize_t low, Py_ssize_t high)¶
- 戻り値: 新しい参照。 次に属します: Stable ABI.
Return the slice of the tuple pointed to by p between low and high, or
NULL
on failure. This is the equivalent of the Python expressionp[low:high]
. Indexing from the end of the list is not supported.
-
int PyTuple_SetItem(PyObject *p, Py_ssize_t pos, PyObject *o)¶
- 次に属します: Stable ABI.
p の指すタプルオブジェクト内の、位置 pos にあるオブジェクトへの参照を入れます。成功すれば
0
を返します。 pos が範囲を超えている場合、-1
を返してIndexError
例外をセットします。注釈
この関数は o への参照を "盗み取り" ます。また、変更先のインデクスにすでに別の要素が入っている場合、その要素に対する参照を放棄します。
-
void PyTuple_SET_ITEM(PyObject *p, Py_ssize_t pos, PyObject *o)¶
PyTuple_SetItem()
に似ていますが、エラーチェックを行わず、新たなタプルに値を入れるとき 以外には使ってはなりません 。注釈
この関数は o への参照を "盗み取り" ます。また、
PyTuple_SetItem()
と違って、要素の置き換えが生じても置き換えられるオブジェクトへの参照を放棄 しません ; その結果、タプル中の位置 pos で参照されていたオブジェクトがメモリリークを引き起こします。
-
int _PyTuple_Resize(PyObject **p, Py_ssize_t newsize)¶
タプルをリサイズする際に使えます。 newsize はタプルの新たな長さです。タプルは変更不能なオブジェクト ということになっている ので、この関数はこのオブジェクトに対してただ一つしか参照がない時以外には使ってはなりません。タプルがコード中の他の部分ですでに参照されている場合には、この関数を 使ってはなりません 。タプルは常に指定サイズの末尾まで伸縮します。成功した場合には
0
を返します。クライアントコードは、*p
の値が呼び出し前と同じになると期待してはなりません。*p
が置き換えられた場合、オリジナルの*p
は破壊されます。失敗すると-1
を返し、*p
をNULL
に設定して、MemoryError
またはSystemError
を送出します。
Struct Sequence オブジェクト¶
struct sequence オブジェクトは namedtuple()
オブジェクトと等価なC オブジェクトです。 つまり、その要素に属性を通してアクセスすることができるシーケンスです。 struct sequence を生成するには、まず特定のstruct sequence 型を生成しなければなりません。
-
PyTypeObject *PyStructSequence_NewType(PyStructSequence_Desc *desc)¶
- 戻り値: 新しい参照。 次に属します: Stable ABI.
後述の desc 中のデータから新しい struct sequence 型を生成します。返される型のインスタンスは
PyStructSequence_New()
で生成できます。
-
void PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc *desc)¶
struct sequence 型である type を desc をもとにその場で初期化します。
-
int PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc)¶
The same as
PyStructSequence_InitType
, but returns0
on success and-1
on failure.バージョン 3.4 で追加.
-
type PyStructSequence_Desc¶
- 次に属します: Stable ABI (すべてのメンバーを含む).
生成するstruct sequence 型のメタデータを保持します。
-
const char *name¶
Name of the struct sequence type.
-
const char *doc¶
Pointer to docstring for the type or
NULL
to omit.
-
PyStructSequence_Field *fields¶
Pointer to
NULL
-terminated array with field names of the new type.
-
int n_in_sequence¶
Number of fields visible to the Python side (if used as tuple).
-
const char *name¶
-
type PyStructSequence_Field¶
- 次に属します: Stable ABI (すべてのメンバーを含む).
Describes a field of a struct sequence. As a struct sequence is modeled as a tuple, all fields are typed as PyObject*. The index in the
fields
array of thePyStructSequence_Desc
determines which field of the struct sequence is described.-
const char *name¶
Name for the field or
NULL
to end the list of named fields, set toPyStructSequence_UnnamedField
to leave unnamed.
-
const char *doc¶
Field docstring or
NULL
to omit.
-
const char *name¶
-
const char *const PyStructSequence_UnnamedField¶
- 次に属します: Stable ABI (バージョン 3.11 より).
フィールド名を名前がないままするための特殊な値。
バージョン 3.9 で変更: 型が
char *
から変更されました。
-
PyObject *PyStructSequence_New(PyTypeObject *type)¶
- 戻り値: 新しい参照。 次に属します: Stable ABI.
type のインスタンスを生成します。 type は
PyStructSequence_NewType()
によって事前に生成していなければなりません。
-
PyObject *PyStructSequence_GetItem(PyObject *p, Py_ssize_t pos)¶
- 戻り値: 借用参照。 次に属します: Stable ABI.
Return the object at position pos in the struct sequence pointed to by p. No bounds checking is performed.
-
PyObject *PyStructSequence_GET_ITEM(PyObject *p, Py_ssize_t pos)¶
- 戻り値: 借用参照。
Macro equivalent of
PyStructSequence_GetItem()
.
-
void PyStructSequence_SetItem(PyObject *p, Py_ssize_t pos, PyObject *o)¶
- 次に属します: Stable ABI.
struct sequence p の pos の位置にあるフィールドに値 o を設定します。
PyTuple_SET_ITEM()
のように、生成したてのインスタンスに対してのみ使用すべきです。注釈
この関数は o への参照を "盗み取り" ます。
-
void PyStructSequence_SET_ITEM(PyObject *p, Py_ssize_t *pos, PyObject *o)¶
Similar to
PyStructSequence_SetItem()
, but implemented as a static inlined function.注釈
この関数は o への参照を "盗み取り" ます。