Mercurial > repos > rliterman > csp2
comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/python3.8/structseq.h @ 69:33d812a61356
planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author | jpayne |
---|---|
date | Tue, 18 Mar 2025 17:55:14 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
67:0e9998148a16 | 69:33d812a61356 |
---|---|
1 | |
2 /* Named tuple object interface */ | |
3 | |
4 #ifndef Py_STRUCTSEQ_H | |
5 #define Py_STRUCTSEQ_H | |
6 #ifdef __cplusplus | |
7 extern "C" { | |
8 #endif | |
9 | |
10 typedef struct PyStructSequence_Field { | |
11 const char *name; | |
12 const char *doc; | |
13 } PyStructSequence_Field; | |
14 | |
15 typedef struct PyStructSequence_Desc { | |
16 const char *name; | |
17 const char *doc; | |
18 struct PyStructSequence_Field *fields; | |
19 int n_in_sequence; | |
20 } PyStructSequence_Desc; | |
21 | |
22 extern char* PyStructSequence_UnnamedField; | |
23 | |
24 #ifndef Py_LIMITED_API | |
25 PyAPI_FUNC(void) PyStructSequence_InitType(PyTypeObject *type, | |
26 PyStructSequence_Desc *desc); | |
27 PyAPI_FUNC(int) PyStructSequence_InitType2(PyTypeObject *type, | |
28 PyStructSequence_Desc *desc); | |
29 #endif | |
30 PyAPI_FUNC(PyTypeObject*) PyStructSequence_NewType(PyStructSequence_Desc *desc); | |
31 | |
32 PyAPI_FUNC(PyObject *) PyStructSequence_New(PyTypeObject* type); | |
33 | |
34 #ifndef Py_LIMITED_API | |
35 typedef PyTupleObject PyStructSequence; | |
36 | |
37 /* Macro, *only* to be used to fill in brand new objects */ | |
38 #define PyStructSequence_SET_ITEM(op, i, v) PyTuple_SET_ITEM(op, i, v) | |
39 | |
40 #define PyStructSequence_GET_ITEM(op, i) PyTuple_GET_ITEM(op, i) | |
41 #endif | |
42 | |
43 PyAPI_FUNC(void) PyStructSequence_SetItem(PyObject*, Py_ssize_t, PyObject*); | |
44 PyAPI_FUNC(PyObject*) PyStructSequence_GetItem(PyObject*, Py_ssize_t); | |
45 | |
46 #ifdef __cplusplus | |
47 } | |
48 #endif | |
49 #endif /* !Py_STRUCTSEQ_H */ |