Coverage Report

Created: 2026-02-26 06:53

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