Coverage Report

Created: 2025-08-26 06:26

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