Coverage Report

Created: 2025-11-24 06:11

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
108
{
23
108
    PyObject *return_value = NULL;
24
108
    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
25
26
108
    #define NUM_KEYWORDS 1
27
108
    static struct {
28
108
        PyGC_Head _this_is_not_used;
29
108
        PyObject_VAR_HEAD
30
108
        Py_hash_t ob_hash;
31
108
        PyObject *ob_item[NUM_KEYWORDS];
32
108
    } _kwtuple = {
33
108
        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
34
108
        .ob_hash = -1,
35
108
        .ob_item = { &_Py_ID(mapping), },
36
108
    };
37
108
    #undef NUM_KEYWORDS
38
108
    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
39
40
    #else  // !Py_BUILD_CORE
41
    #  define KWTUPLE NULL
42
    #endif  // !Py_BUILD_CORE
43
44
108
    static const char * const _keywords[] = {"mapping", NULL};
45
108
    static _PyArg_Parser _parser = {
46
108
        .keywords = _keywords,
47
108
        .fname = "mappingproxy",
48
108
        .kwtuple = KWTUPLE,
49
108
    };
50
108
    #undef KWTUPLE
51
108
    PyObject *argsbuf[1];
52
108
    PyObject * const *fastargs;
53
108
    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
54
108
    PyObject *mapping;
55
56
108
    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
57
108
            /*minpos*/ 1, /*maxpos*/ 1, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
58
108
    if (!fastargs) {
59
0
        goto exit;
60
0
    }
61
108
    mapping = fastargs[0];
62
108
    return_value = mappingproxy_new_impl(type, mapping);
63
64
108
exit:
65
108
    return return_value;
66
108
}
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
1.44k
{
112
1.44k
    int return_value = -1;
113
1.44k
    #if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
114
115
1.44k
    #define NUM_KEYWORDS 4
116
1.44k
    static struct {
117
1.44k
        PyGC_Head _this_is_not_used;
118
1.44k
        PyObject_VAR_HEAD
119
1.44k
        Py_hash_t ob_hash;
120
1.44k
        PyObject *ob_item[NUM_KEYWORDS];
121
1.44k
    } _kwtuple = {
122
1.44k
        .ob_base = PyVarObject_HEAD_INIT(&PyTuple_Type, NUM_KEYWORDS)
123
1.44k
        .ob_hash = -1,
124
1.44k
        .ob_item = { &_Py_ID(fget), &_Py_ID(fset), &_Py_ID(fdel), &_Py_ID(doc), },
125
1.44k
    };
126
1.44k
    #undef NUM_KEYWORDS
127
1.44k
    #define KWTUPLE (&_kwtuple.ob_base.ob_base)
128
129
    #else  // !Py_BUILD_CORE
130
    #  define KWTUPLE NULL
131
    #endif  // !Py_BUILD_CORE
132
133
1.44k
    static const char * const _keywords[] = {"fget", "fset", "fdel", "doc", NULL};
134
1.44k
    static _PyArg_Parser _parser = {
135
1.44k
        .keywords = _keywords,
136
1.44k
        .fname = "property",
137
1.44k
        .kwtuple = KWTUPLE,
138
1.44k
    };
139
1.44k
    #undef KWTUPLE
140
1.44k
    PyObject *argsbuf[4];
141
1.44k
    PyObject * const *fastargs;
142
1.44k
    Py_ssize_t nargs = PyTuple_GET_SIZE(args);
143
1.44k
    Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0;
144
1.44k
    PyObject *fget = NULL;
145
1.44k
    PyObject *fset = NULL;
146
1.44k
    PyObject *fdel = NULL;
147
1.44k
    PyObject *doc = NULL;
148
149
1.44k
    fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser,
150
1.44k
            /*minpos*/ 0, /*maxpos*/ 4, /*minkw*/ 0, /*varpos*/ 0, argsbuf);
151
1.44k
    if (!fastargs) {
152
0
        goto exit;
153
0
    }
154
1.44k
    if (!noptargs) {
155
0
        goto skip_optional_pos;
156
0
    }
157
1.44k
    if (fastargs[0]) {
158
1.44k
        fget = fastargs[0];
159
1.44k
        if (!--noptargs) {
160
1.30k
            goto skip_optional_pos;
161
1.30k
        }
162
1.44k
    }
163
138
    if (fastargs[1]) {
164
138
        fset = fastargs[1];
165
138
        if (!--noptargs) {
166
4
            goto skip_optional_pos;
167
4
        }
168
138
    }
169
134
    if (fastargs[2]) {
170
134
        fdel = fastargs[2];
171
134
        if (!--noptargs) {
172
0
            goto skip_optional_pos;
173
0
        }
174
134
    }
175
134
    doc = fastargs[3];
176
1.44k
skip_optional_pos:
177
1.44k
    return_value = property_init_impl((propertyobject *)self, fget, fset, fdel, doc);
178
179
1.44k
exit:
180
1.44k
    return return_value;
181
1.44k
}
182
/*[clinic end generated code: output=2e8df497abc4f915 input=a9049054013a1b77]*/