Coverage Report

Created: 2026-03-23 06:45

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