/src/cpython/Objects/clinic/structseq.c.h
Line | Count | Source (jump to first uncovered line) |
1 | | /*[clinic input] |
2 | | preserve |
3 | | [clinic start generated code]*/ |
4 | | |
5 | | #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) |
6 | | # include "pycore_gc.h" // PyGC_Head |
7 | | # include "pycore_runtime.h" // _Py_ID() |
8 | | #endif |
9 | | #include "pycore_modsupport.h" // _PyArg_UnpackKeywords() |
10 | | |
11 | | static PyObject * |
12 | | structseq_new_impl(PyTypeObject *type, PyObject *arg, PyObject *dict); |
13 | | |
14 | | static PyObject * |
15 | | structseq_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) |
16 | 0 | { |
17 | 0 | PyObject *return_value = NULL; |
18 | 0 | #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE) |
19 | |
|
20 | 0 | #define NUM_KEYWORDS 2 |
21 | 0 | static struct { |
22 | 0 | PyGC_Head _this_is_not_used; |
23 | 0 | PyObject_VAR_HEAD |
24 | 0 | Py_hash_t ob_hash; |
25 | 0 | PyObject *ob_item[NUM_KEYWORDS]; |
26 | 0 | } _kwtuple = { |
27 | 0 | .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS) |
28 | 0 | .ob_hash = -1, |
29 | 0 | .ob_item = { &_Py_ID(sequence), &_Py_ID(dict), }, |
30 | 0 | }; |
31 | 0 | #undef NUM_KEYWORDS |
32 | 0 | #define KWTUPLE (&_kwtuple.ob_base.ob_base) |
33 | |
|
34 | | #else // !Py_BUILD_CORE |
35 | | # define KWTUPLE NULL |
36 | | #endif // !Py_BUILD_CORE |
37 | |
|
38 | 0 | static const char * const _keywords[] = {"sequence", "dict", NULL}; |
39 | 0 | static _PyArg_Parser _parser = { |
40 | 0 | .keywords = _keywords, |
41 | 0 | .fname = "structseq", |
42 | 0 | .kwtuple = KWTUPLE, |
43 | 0 | }; |
44 | 0 | #undef KWTUPLE |
45 | 0 | PyObject *argsbuf[2]; |
46 | 0 | PyObject * const *fastargs; |
47 | 0 | Py_ssize_t nargs = PyTuple_GET_SIZE(args); |
48 | 0 | Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 1; |
49 | 0 | PyObject *arg; |
50 | 0 | PyObject *dict = NULL; |
51 | |
|
52 | 0 | fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, |
53 | 0 | /*minpos*/ 1, /*maxpos*/ 2, /*minkw*/ 0, /*varpos*/ 0, argsbuf); |
54 | 0 | if (!fastargs) { |
55 | 0 | goto exit; |
56 | 0 | } |
57 | 0 | arg = fastargs[0]; |
58 | 0 | if (!noptargs) { |
59 | 0 | goto skip_optional_pos; |
60 | 0 | } |
61 | 0 | dict = fastargs[1]; |
62 | 0 | skip_optional_pos: |
63 | 0 | return_value = structseq_new_impl(type, arg, dict); |
64 | |
|
65 | 0 | exit: |
66 | 0 | return return_value; |
67 | 0 | } |
68 | | /*[clinic end generated code: output=112d59f5e98d652b input=a9049054013a1b77]*/ |