Coverage Report

Created: 2026-03-08 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cpython/Objects/clinic/descrobject.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
PyDoc_STRVAR(mappingproxy_new__doc__,
12
"mappingproxy(mapping)\n"
13
"--\n"
14
"\n"
15
"Read-only proxy of a mapping.");
16
17
static PyObject *
18
mappingproxy_new_impl(PyTypeObject *type, PyObject *mapping);
19
20
static PyObject *
21
mappingproxy_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
22
28.6k
{
23
28.6k
    PyObject *return_value = NULL;
24
28.6k
    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
25
26
28.6k
    #define NUM_KEYWORDS 1
27
28.6k
    static struct {
28
28.6k
        PyGC_Head _this_is_not_used;
29
28.6k
        PyObject_VAR_HEAD
30
28.6k
        Py_hash_t ob_hash;
31
28.6k
        PyObject *ob_item[NUM_KEYWORDS];
32
28.6k
    } _kwtuple = {
33
28.6k
        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
34
28.6k
        .ob_hash = -1,
35
28.6k
        .ob_item = { &_Py_ID(mapping), },
36
28.6k
    };
37
28.6k
    #undef NUM_KEYWORDS
38
28.6k
    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
39
40
    #else  // !Py_BUILD_CORE
41
    #  define KWTUPLE NULL
42
    #endif  // !Py_BUILD_CORE
43
44
28.6k
    static const char * const _keywords[] = {"mapping", NULL};
45
28.6k
    static _PyArg_Parser _parser = {
46
28.6k
        .keywords = _keywords,
47
28.6k
        .fname = "mappingproxy",
48
28.6k
        .kwtuple = KWTUPLE,
49
28.6k
    };
50
28.6k
    #undef KWTUPLE
51
28.6k
    PyObject *argsbuf[1];
52
28.6k
    PyObject * const *fastargs;
53
28.6k
    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
54
28.6k
    PyObject *mapping;
55
56
28.6k
    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
57
28.6k
            /*minpos*/ 1, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
58
28.6k
    if (!fastargs) {
59
0
        goto exit;
60
0
    }
61
28.6k
    mapping = fastargs[0];
62
28.6k
    return_value = mappingproxy_new_impl(type, mapping);
63
64
28.6k
exit:
65
28.6k
    return return_value;
66
28.6k
}
67
68
PyDoc_STRVAR(property_init__doc__,
69
"property(fget=None, fset=None, fdel=None, doc=None)\n"
70
"--\n"
71
"\n"
72
"Property attribute.\n"
73
"\n"
74
"  fget\n"
75
"    function to be used for getting an attribute value\n"
76
"  fset\n"
77
"    function to be used for setting an attribute value\n"
78
"  fdel\n"
79
"    function to be used for del\'ing an attribute\n"
80
"  doc\n"
81
"    docstring\n"
82
"\n"
83
"Typical use is to define a managed attribute x:\n"
84
"\n"
85
"class C(object):\n"
86
"    def getx(self): return self._x\n"
87
"    def setx(self, value): self._x = value\n"
88
"    def delx(self): del self._x\n"
89
"    x = property(getx, setx, delx, \"I\'m the \'x\' property.\")\n"
90
"\n"
91
"Decorators make defining new properties or modifying existing ones easy:\n"
92
"\n"
93
"class C(object):\n"
94
"    @property\n"
95
"    def x(self):\n"
96
"        \"I am the \'x\' property.\"\n"
97
"        return self._x\n"
98
"    @x.setter\n"
99
"    def x(self, value):\n"
100
"        self._x = value\n"
101
"    @x.deleter\n"
102
"    def x(self):\n"
103
"        del self._x");
104
105
static int
106
property_init_impl(propertyobject *self, PyObject *fget, PyObject *fset,
107
                   PyObject *fdel, PyObject *doc);
108
109
static int
110
property_init(PyObject *self, PyObject *args, PyObject *kwargs)
111
3.17k
{
112
3.17k
    int return_value = -1;
113
3.17k
    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
114
115
3.17k
    #define NUM_KEYWORDS 4
116
3.17k
    static struct {
117
3.17k
        PyGC_Head _this_is_not_used;
118
3.17k
        PyObject_VAR_HEAD
119
3.17k
        Py_hash_t ob_hash;
120
3.17k
        PyObject *ob_item[NUM_KEYWORDS];
121
3.17k
    } _kwtuple = {
122
3.17k
        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
123
3.17k
        .ob_hash = -1,
124
3.17k
        .ob_item = { &_Py_ID(fget), &_Py_ID(fset), &_Py_ID(fdel), &_Py_ID(doc), },
125
3.17k
    };
126
3.17k
    #undef NUM_KEYWORDS
127
3.17k
    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
128
129
    #else  // !Py_BUILD_CORE
130
    #  define KWTUPLE NULL
131
    #endif  // !Py_BUILD_CORE
132
133
3.17k
    static const char * const _keywords[] = {"fget", "fset", "fdel", "doc", NULL};
134
3.17k
    static _PyArg_Parser _parser = {
135
3.17k
        .keywords = _keywords,
136
3.17k
        .fname = "property",
137
3.17k
        .kwtuple = KWTUPLE,
138
3.17k
    };
139
3.17k
    #undef KWTUPLE
140
3.17k
    PyObject *argsbuf[4];
141
3.17k
    PyObject * const *fastargs;
142
3.17k
    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
143
3.17k
    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
144
3.17k
    PyObject *fget = NULL;
145
3.17k
    PyObject *fset = NULL;
146
3.17k
    PyObject *fdel = NULL;
147
3.17k
    PyObject *doc = NULL;
148
149
3.17k
    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
150
3.17k
            /*minpos*/ 0, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
151
3.17k
    if (!fastargs) {
152
0
        goto exit;
153
0
    }
154
3.17k
    if (!noptargs) {
155
0
        goto skip_optional_pos;
156
0
    }
157
3.17k
    if (fastargs[0]) {
158
3.17k
        fget = fastargs[0];
159
3.17k
        if (!--noptargs) {
160
2.84k
            goto skip_optional_pos;
161
2.84k
        }
162
3.17k
    }
163
330
    if (fastargs[1]) {
164
330
        fset = fastargs[1];
165
330
        if (!--noptargs) {
166
52
            goto skip_optional_pos;
167
52
        }
168
330
    }
169
278
    if (fastargs[2]) {
170
278
        fdel = fastargs[2];
171
278
        if (!--noptargs) {
172
4
            goto skip_optional_pos;
173
4
        }
174
278
    }
175
274
    doc = fastargs[3];
176
3.17k
skip_optional_pos:
177
3.17k
    return_value = property_init_impl((propertyobject *)self, fget, fset, fdel, doc);
178
179
3.17k
exit:
180
3.17k
    return return_value;
181
3.17k
}
182
/*[clinic end generated code: output=2e8df497abc4f915 input=a9049054013a1b77]*/