Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* Function object implementation */ |
| 3 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5 | #include "code.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 6 | #include "structmember.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 8 | PyObject * |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 9 | PyFunction_NewWithQualName(PyObject *code, PyObject *globals, PyObject *qualname) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 10 | { |
Victor Stinner | 4d1f5d6 | 2013-07-22 23:02:05 +0200 | [diff] [blame] | 11 | PyFunctionObject *op; |
| 12 | PyObject *doc, *consts, *module; |
| 13 | static PyObject *__name__ = NULL; |
Jeremy Hylton | 4f0dcc9 | 2003-01-31 18:33:18 +0000 | [diff] [blame] | 14 | |
Victor Stinner | 34f96b8 | 2013-07-22 23:04:55 +0200 | [diff] [blame] | 15 | if (__name__ == NULL) { |
| 16 | __name__ = PyUnicode_InternFromString("__name__"); |
| 17 | if (__name__ == NULL) |
| 18 | return NULL; |
| 19 | } |
| 20 | |
Victor Stinner | 4d1f5d6 | 2013-07-22 23:02:05 +0200 | [diff] [blame] | 21 | op = PyObject_GC_New(PyFunctionObject, &PyFunction_Type); |
| 22 | if (op == NULL) |
| 23 | return NULL; |
| 24 | |
| 25 | op->func_weakreflist = NULL; |
| 26 | Py_INCREF(code); |
| 27 | op->func_code = code; |
| 28 | Py_INCREF(globals); |
| 29 | op->func_globals = globals; |
| 30 | op->func_name = ((PyCodeObject *)code)->co_name; |
| 31 | Py_INCREF(op->func_name); |
| 32 | op->func_defaults = NULL; /* No default arguments */ |
| 33 | op->func_kwdefaults = NULL; /* No keyword only defaults */ |
| 34 | op->func_closure = NULL; |
Victor Stinner | 34f96b8 | 2013-07-22 23:04:55 +0200 | [diff] [blame] | 35 | |
Victor Stinner | 4d1f5d6 | 2013-07-22 23:02:05 +0200 | [diff] [blame] | 36 | consts = ((PyCodeObject *)code)->co_consts; |
| 37 | if (PyTuple_Size(consts) >= 1) { |
| 38 | doc = PyTuple_GetItem(consts, 0); |
| 39 | if (!PyUnicode_Check(doc)) |
| 40 | doc = Py_None; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 41 | } |
| 42 | else |
Victor Stinner | 4d1f5d6 | 2013-07-22 23:02:05 +0200 | [diff] [blame] | 43 | doc = Py_None; |
| 44 | Py_INCREF(doc); |
| 45 | op->func_doc = doc; |
Victor Stinner | 34f96b8 | 2013-07-22 23:04:55 +0200 | [diff] [blame] | 46 | |
Victor Stinner | 4d1f5d6 | 2013-07-22 23:02:05 +0200 | [diff] [blame] | 47 | op->func_dict = NULL; |
| 48 | op->func_module = NULL; |
| 49 | op->func_annotations = NULL; |
| 50 | |
| 51 | /* __module__: If module name is in globals, use it. |
Victor Stinner | 34f96b8 | 2013-07-22 23:04:55 +0200 | [diff] [blame] | 52 | Otherwise, use None. */ |
Victor Stinner | 4d1f5d6 | 2013-07-22 23:02:05 +0200 | [diff] [blame] | 53 | module = PyDict_GetItem(globals, __name__); |
| 54 | if (module) { |
| 55 | Py_INCREF(module); |
| 56 | op->func_module = module; |
| 57 | } |
| 58 | if (qualname) |
| 59 | op->func_qualname = qualname; |
| 60 | else |
| 61 | op->func_qualname = op->func_name; |
| 62 | Py_INCREF(op->func_qualname); |
| 63 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 64 | _PyObject_GC_TRACK(op); |
| 65 | return (PyObject *)op; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 68 | PyObject * |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 69 | PyFunction_New(PyObject *code, PyObject *globals) |
| 70 | { |
| 71 | return PyFunction_NewWithQualName(code, globals, NULL); |
| 72 | } |
| 73 | |
| 74 | PyObject * |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 75 | PyFunction_GetCode(PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 76 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 77 | if (!PyFunction_Check(op)) { |
| 78 | PyErr_BadInternalCall(); |
| 79 | return NULL; |
| 80 | } |
| 81 | return ((PyFunctionObject *) op) -> func_code; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 84 | PyObject * |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 85 | PyFunction_GetGlobals(PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 86 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 87 | if (!PyFunction_Check(op)) { |
| 88 | PyErr_BadInternalCall(); |
| 89 | return NULL; |
| 90 | } |
| 91 | return ((PyFunctionObject *) op) -> func_globals; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 94 | PyObject * |
Jeremy Hylton | 4f0dcc9 | 2003-01-31 18:33:18 +0000 | [diff] [blame] | 95 | PyFunction_GetModule(PyObject *op) |
| 96 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 97 | if (!PyFunction_Check(op)) { |
| 98 | PyErr_BadInternalCall(); |
| 99 | return NULL; |
| 100 | } |
| 101 | return ((PyFunctionObject *) op) -> func_module; |
Jeremy Hylton | 4f0dcc9 | 2003-01-31 18:33:18 +0000 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | PyObject * |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 105 | PyFunction_GetDefaults(PyObject *op) |
Guido van Rossum | 1d5735e | 1994-08-30 08:27:36 +0000 | [diff] [blame] | 106 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 107 | if (!PyFunction_Check(op)) { |
| 108 | PyErr_BadInternalCall(); |
| 109 | return NULL; |
| 110 | } |
| 111 | return ((PyFunctionObject *) op) -> func_defaults; |
Guido van Rossum | 1d5735e | 1994-08-30 08:27:36 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | int |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 115 | PyFunction_SetDefaults(PyObject *op, PyObject *defaults) |
Guido van Rossum | 1d5735e | 1994-08-30 08:27:36 +0000 | [diff] [blame] | 116 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 117 | if (!PyFunction_Check(op)) { |
| 118 | PyErr_BadInternalCall(); |
| 119 | return -1; |
| 120 | } |
| 121 | if (defaults == Py_None) |
| 122 | defaults = NULL; |
| 123 | else if (defaults && PyTuple_Check(defaults)) { |
| 124 | Py_INCREF(defaults); |
| 125 | } |
| 126 | else { |
| 127 | PyErr_SetString(PyExc_SystemError, "non-tuple default args"); |
| 128 | return -1; |
| 129 | } |
Serhiy Storchaka | 4884271 | 2016-04-06 09:45:48 +0300 | [diff] [blame] | 130 | Py_XSETREF(((PyFunctionObject *)op)->func_defaults, defaults); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 131 | return 0; |
Guido van Rossum | 1d5735e | 1994-08-30 08:27:36 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 134 | PyObject * |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 135 | PyFunction_GetKwDefaults(PyObject *op) |
| 136 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 137 | if (!PyFunction_Check(op)) { |
| 138 | PyErr_BadInternalCall(); |
| 139 | return NULL; |
| 140 | } |
| 141 | return ((PyFunctionObject *) op) -> func_kwdefaults; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | int |
| 145 | PyFunction_SetKwDefaults(PyObject *op, PyObject *defaults) |
| 146 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 147 | if (!PyFunction_Check(op)) { |
| 148 | PyErr_BadInternalCall(); |
| 149 | return -1; |
| 150 | } |
| 151 | if (defaults == Py_None) |
| 152 | defaults = NULL; |
| 153 | else if (defaults && PyDict_Check(defaults)) { |
| 154 | Py_INCREF(defaults); |
| 155 | } |
| 156 | else { |
| 157 | PyErr_SetString(PyExc_SystemError, |
| 158 | "non-dict keyword only default args"); |
| 159 | return -1; |
| 160 | } |
Serhiy Storchaka | 4884271 | 2016-04-06 09:45:48 +0300 | [diff] [blame] | 161 | Py_XSETREF(((PyFunctionObject *)op)->func_kwdefaults, defaults); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 162 | return 0; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | PyObject * |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 166 | PyFunction_GetClosure(PyObject *op) |
| 167 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 168 | if (!PyFunction_Check(op)) { |
| 169 | PyErr_BadInternalCall(); |
| 170 | return NULL; |
| 171 | } |
| 172 | return ((PyFunctionObject *) op) -> func_closure; |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | int |
| 176 | PyFunction_SetClosure(PyObject *op, PyObject *closure) |
| 177 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 178 | if (!PyFunction_Check(op)) { |
| 179 | PyErr_BadInternalCall(); |
| 180 | return -1; |
| 181 | } |
| 182 | if (closure == Py_None) |
| 183 | closure = NULL; |
| 184 | else if (PyTuple_Check(closure)) { |
| 185 | Py_INCREF(closure); |
| 186 | } |
| 187 | else { |
| 188 | PyErr_Format(PyExc_SystemError, |
| 189 | "expected tuple for closure, got '%.100s'", |
| 190 | closure->ob_type->tp_name); |
| 191 | return -1; |
| 192 | } |
Serhiy Storchaka | 4884271 | 2016-04-06 09:45:48 +0300 | [diff] [blame] | 193 | Py_XSETREF(((PyFunctionObject *)op)->func_closure, closure); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 194 | return 0; |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 197 | PyObject * |
| 198 | PyFunction_GetAnnotations(PyObject *op) |
| 199 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 200 | if (!PyFunction_Check(op)) { |
| 201 | PyErr_BadInternalCall(); |
| 202 | return NULL; |
| 203 | } |
| 204 | return ((PyFunctionObject *) op) -> func_annotations; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | int |
| 208 | PyFunction_SetAnnotations(PyObject *op, PyObject *annotations) |
| 209 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 210 | if (!PyFunction_Check(op)) { |
| 211 | PyErr_BadInternalCall(); |
| 212 | return -1; |
| 213 | } |
| 214 | if (annotations == Py_None) |
| 215 | annotations = NULL; |
| 216 | else if (annotations && PyDict_Check(annotations)) { |
| 217 | Py_INCREF(annotations); |
| 218 | } |
| 219 | else { |
| 220 | PyErr_SetString(PyExc_SystemError, |
| 221 | "non-dict annotations"); |
| 222 | return -1; |
| 223 | } |
Serhiy Storchaka | 4884271 | 2016-04-06 09:45:48 +0300 | [diff] [blame] | 224 | Py_XSETREF(((PyFunctionObject *)op)->func_annotations, annotations); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 225 | return 0; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 228 | /* Methods */ |
| 229 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 230 | #define OFF(x) offsetof(PyFunctionObject, x) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 231 | |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 232 | static PyMemberDef func_memberlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 233 | {"__closure__", T_OBJECT, OFF(func_closure), |
| 234 | RESTRICTED|READONLY}, |
| 235 | {"__doc__", T_OBJECT, OFF(func_doc), PY_WRITE_RESTRICTED}, |
| 236 | {"__globals__", T_OBJECT, OFF(func_globals), |
| 237 | RESTRICTED|READONLY}, |
| 238 | {"__module__", T_OBJECT, OFF(func_module), PY_WRITE_RESTRICTED}, |
| 239 | {NULL} /* Sentinel */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 240 | }; |
| 241 | |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 242 | static PyObject * |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 243 | func_get_code(PyFunctionObject *op) |
| 244 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 245 | Py_INCREF(op->func_code); |
| 246 | return op->func_code; |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | static int |
| 250 | func_set_code(PyFunctionObject *op, PyObject *value) |
| 251 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 252 | Py_ssize_t nfree, nclosure; |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 253 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 254 | /* Not legal to del f.func_code or to set it to anything |
| 255 | * other than a code object. */ |
| 256 | if (value == NULL || !PyCode_Check(value)) { |
| 257 | PyErr_SetString(PyExc_TypeError, |
| 258 | "__code__ must be set to a code object"); |
| 259 | return -1; |
| 260 | } |
| 261 | nfree = PyCode_GetNumFree((PyCodeObject *)value); |
| 262 | nclosure = (op->func_closure == NULL ? 0 : |
| 263 | PyTuple_GET_SIZE(op->func_closure)); |
| 264 | if (nclosure != nfree) { |
| 265 | PyErr_Format(PyExc_ValueError, |
| 266 | "%U() requires a code object with %zd free vars," |
| 267 | " not %zd", |
| 268 | op->func_name, |
| 269 | nclosure, nfree); |
| 270 | return -1; |
| 271 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 272 | Py_INCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 273 | Py_XSETREF(op->func_code, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 274 | return 0; |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | static PyObject * |
Michael W. Hudson | 5e89795 | 2004-08-12 18:12:44 +0000 | [diff] [blame] | 278 | func_get_name(PyFunctionObject *op) |
| 279 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 280 | Py_INCREF(op->func_name); |
| 281 | return op->func_name; |
Michael W. Hudson | 5e89795 | 2004-08-12 18:12:44 +0000 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | static int |
| 285 | func_set_name(PyFunctionObject *op, PyObject *value) |
| 286 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 287 | /* Not legal to del f.func_name or to set it to anything |
| 288 | * other than a string object. */ |
| 289 | if (value == NULL || !PyUnicode_Check(value)) { |
| 290 | PyErr_SetString(PyExc_TypeError, |
| 291 | "__name__ must be set to a string object"); |
| 292 | return -1; |
| 293 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 294 | Py_INCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 295 | Py_XSETREF(op->func_name, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 296 | return 0; |
Michael W. Hudson | 5e89795 | 2004-08-12 18:12:44 +0000 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | static PyObject * |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 300 | func_get_qualname(PyFunctionObject *op) |
| 301 | { |
| 302 | Py_INCREF(op->func_qualname); |
| 303 | return op->func_qualname; |
| 304 | } |
| 305 | |
| 306 | static int |
| 307 | func_set_qualname(PyFunctionObject *op, PyObject *value) |
| 308 | { |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 309 | /* Not legal to del f.__qualname__ or to set it to anything |
| 310 | * other than a string object. */ |
| 311 | if (value == NULL || !PyUnicode_Check(value)) { |
| 312 | PyErr_SetString(PyExc_TypeError, |
| 313 | "__qualname__ must be set to a string object"); |
| 314 | return -1; |
| 315 | } |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 316 | Py_INCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 317 | Py_XSETREF(op->func_qualname, value); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | static PyObject * |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 322 | func_get_defaults(PyFunctionObject *op) |
| 323 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 324 | if (op->func_defaults == NULL) { |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 325 | Py_RETURN_NONE; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 326 | } |
| 327 | Py_INCREF(op->func_defaults); |
| 328 | return op->func_defaults; |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | static int |
| 332 | func_set_defaults(PyFunctionObject *op, PyObject *value) |
| 333 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 334 | /* Legal to del f.func_defaults. |
| 335 | * Can only set func_defaults to NULL or a tuple. */ |
| 336 | if (value == Py_None) |
| 337 | value = NULL; |
| 338 | if (value != NULL && !PyTuple_Check(value)) { |
| 339 | PyErr_SetString(PyExc_TypeError, |
| 340 | "__defaults__ must be set to a tuple object"); |
| 341 | return -1; |
| 342 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 343 | Py_XINCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 344 | Py_XSETREF(op->func_defaults, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 345 | return 0; |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 348 | static PyObject * |
| 349 | func_get_kwdefaults(PyFunctionObject *op) |
| 350 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 351 | if (op->func_kwdefaults == NULL) { |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 352 | Py_RETURN_NONE; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 353 | } |
| 354 | Py_INCREF(op->func_kwdefaults); |
| 355 | return op->func_kwdefaults; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | static int |
| 359 | func_set_kwdefaults(PyFunctionObject *op, PyObject *value) |
| 360 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 361 | if (value == Py_None) |
| 362 | value = NULL; |
| 363 | /* Legal to del f.func_kwdefaults. |
| 364 | * Can only set func_kwdefaults to NULL or a dict. */ |
| 365 | if (value != NULL && !PyDict_Check(value)) { |
| 366 | PyErr_SetString(PyExc_TypeError, |
| 367 | "__kwdefaults__ must be set to a dict object"); |
| 368 | return -1; |
| 369 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 370 | Py_XINCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 371 | Py_XSETREF(op->func_kwdefaults, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 372 | return 0; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 373 | } |
| 374 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 375 | static PyObject * |
| 376 | func_get_annotations(PyFunctionObject *op) |
| 377 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 378 | if (op->func_annotations == NULL) { |
| 379 | op->func_annotations = PyDict_New(); |
| 380 | if (op->func_annotations == NULL) |
| 381 | return NULL; |
| 382 | } |
| 383 | Py_INCREF(op->func_annotations); |
| 384 | return op->func_annotations; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static int |
| 388 | func_set_annotations(PyFunctionObject *op, PyObject *value) |
| 389 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 390 | if (value == Py_None) |
| 391 | value = NULL; |
| 392 | /* Legal to del f.func_annotations. |
| 393 | * Can only set func_annotations to NULL (through C api) |
| 394 | * or a dict. */ |
| 395 | if (value != NULL && !PyDict_Check(value)) { |
| 396 | PyErr_SetString(PyExc_TypeError, |
| 397 | "__annotations__ must be set to a dict object"); |
| 398 | return -1; |
| 399 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 400 | Py_XINCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 401 | Py_XSETREF(op->func_annotations, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 402 | return 0; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 403 | } |
| 404 | |
Guido van Rossum | 32d34c8 | 2001-09-20 21:45:26 +0000 | [diff] [blame] | 405 | static PyGetSetDef func_getsetlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 406 | {"__code__", (getter)func_get_code, (setter)func_set_code}, |
| 407 | {"__defaults__", (getter)func_get_defaults, |
| 408 | (setter)func_set_defaults}, |
| 409 | {"__kwdefaults__", (getter)func_get_kwdefaults, |
| 410 | (setter)func_set_kwdefaults}, |
| 411 | {"__annotations__", (getter)func_get_annotations, |
| 412 | (setter)func_set_annotations}, |
Benjamin Peterson | 23d7f12 | 2012-02-19 20:02:57 -0500 | [diff] [blame] | 413 | {"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 414 | {"__name__", (getter)func_get_name, (setter)func_set_name}, |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 415 | {"__qualname__", (getter)func_get_qualname, (setter)func_set_qualname}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 416 | {NULL} /* Sentinel */ |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 417 | }; |
| 418 | |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 419 | PyDoc_STRVAR(func_doc, |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 420 | "function(code, globals[, name[, argdefs[, closure]]])\n\ |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 421 | \n\ |
| 422 | Create a function object from a code object and a dictionary.\n\ |
| 423 | The optional name string overrides the name from the code object.\n\ |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 424 | The optional argdefs tuple specifies the default argument values.\n\ |
| 425 | The optional closure tuple supplies the bindings for free variables."); |
| 426 | |
| 427 | /* func_new() maintains the following invariants for closures. The |
| 428 | closure must correspond to the free variables of the code object. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 429 | |
| 430 | if len(code.co_freevars) == 0: |
| 431 | closure = NULL |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 432 | else: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 433 | len(closure) == len(code.co_freevars) |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 434 | for every elt in closure, type(elt) == cell |
| 435 | */ |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 436 | |
| 437 | static PyObject * |
| 438 | func_new(PyTypeObject* type, PyObject* args, PyObject* kw) |
| 439 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 440 | PyCodeObject *code; |
| 441 | PyObject *globals; |
| 442 | PyObject *name = Py_None; |
| 443 | PyObject *defaults = Py_None; |
| 444 | PyObject *closure = Py_None; |
| 445 | PyFunctionObject *newfunc; |
| 446 | Py_ssize_t nfree, nclosure; |
| 447 | static char *kwlist[] = {"code", "globals", "name", |
| 448 | "argdefs", "closure", 0}; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 449 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 450 | if (!PyArg_ParseTupleAndKeywords(args, kw, "O!O!|OOO:function", |
| 451 | kwlist, |
| 452 | &PyCode_Type, &code, |
| 453 | &PyDict_Type, &globals, |
| 454 | &name, &defaults, &closure)) |
| 455 | return NULL; |
| 456 | if (name != Py_None && !PyUnicode_Check(name)) { |
| 457 | PyErr_SetString(PyExc_TypeError, |
| 458 | "arg 3 (name) must be None or string"); |
| 459 | return NULL; |
| 460 | } |
| 461 | if (defaults != Py_None && !PyTuple_Check(defaults)) { |
| 462 | PyErr_SetString(PyExc_TypeError, |
| 463 | "arg 4 (defaults) must be None or tuple"); |
| 464 | return NULL; |
| 465 | } |
| 466 | nfree = PyTuple_GET_SIZE(code->co_freevars); |
| 467 | if (!PyTuple_Check(closure)) { |
| 468 | if (nfree && closure == Py_None) { |
| 469 | PyErr_SetString(PyExc_TypeError, |
| 470 | "arg 5 (closure) must be tuple"); |
| 471 | return NULL; |
| 472 | } |
| 473 | else if (closure != Py_None) { |
| 474 | PyErr_SetString(PyExc_TypeError, |
| 475 | "arg 5 (closure) must be None or tuple"); |
| 476 | return NULL; |
| 477 | } |
| 478 | } |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 479 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 480 | /* check that the closure is well-formed */ |
| 481 | nclosure = closure == Py_None ? 0 : PyTuple_GET_SIZE(closure); |
| 482 | if (nfree != nclosure) |
| 483 | return PyErr_Format(PyExc_ValueError, |
| 484 | "%U requires closure of length %zd, not %zd", |
| 485 | code->co_name, nfree, nclosure); |
| 486 | if (nclosure) { |
| 487 | Py_ssize_t i; |
| 488 | for (i = 0; i < nclosure; i++) { |
| 489 | PyObject *o = PyTuple_GET_ITEM(closure, i); |
| 490 | if (!PyCell_Check(o)) { |
| 491 | return PyErr_Format(PyExc_TypeError, |
| 492 | "arg 5 (closure) expected cell, found %s", |
| 493 | o->ob_type->tp_name); |
| 494 | } |
| 495 | } |
| 496 | } |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 497 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 498 | newfunc = (PyFunctionObject *)PyFunction_New((PyObject *)code, |
| 499 | globals); |
| 500 | if (newfunc == NULL) |
| 501 | return NULL; |
| 502 | |
| 503 | if (name != Py_None) { |
| 504 | Py_INCREF(name); |
Serhiy Storchaka | 57a01d3 | 2016-04-10 18:05:40 +0300 | [diff] [blame] | 505 | Py_SETREF(newfunc->func_name, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 506 | } |
| 507 | if (defaults != Py_None) { |
| 508 | Py_INCREF(defaults); |
| 509 | newfunc->func_defaults = defaults; |
| 510 | } |
| 511 | if (closure != Py_None) { |
| 512 | Py_INCREF(closure); |
| 513 | newfunc->func_closure = closure; |
| 514 | } |
| 515 | |
| 516 | return (PyObject *)newfunc; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 517 | } |
| 518 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 519 | static void |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 520 | func_dealloc(PyFunctionObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 521 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 522 | _PyObject_GC_UNTRACK(op); |
| 523 | if (op->func_weakreflist != NULL) |
| 524 | PyObject_ClearWeakRefs((PyObject *) op); |
| 525 | Py_DECREF(op->func_code); |
| 526 | Py_DECREF(op->func_globals); |
| 527 | Py_XDECREF(op->func_module); |
| 528 | Py_DECREF(op->func_name); |
| 529 | Py_XDECREF(op->func_defaults); |
| 530 | Py_XDECREF(op->func_kwdefaults); |
| 531 | Py_XDECREF(op->func_doc); |
| 532 | Py_XDECREF(op->func_dict); |
| 533 | Py_XDECREF(op->func_closure); |
| 534 | Py_XDECREF(op->func_annotations); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 535 | Py_XDECREF(op->func_qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 536 | PyObject_GC_Del(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 537 | } |
| 538 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 539 | static PyObject* |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 540 | func_repr(PyFunctionObject *op) |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 541 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 542 | return PyUnicode_FromFormat("<function %U at %p>", |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 543 | op->func_qualname, op); |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Guido van Rossum | 2e8f8a3 | 1993-11-05 10:20:10 +0000 | [diff] [blame] | 546 | static int |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 547 | func_traverse(PyFunctionObject *f, visitproc visit, void *arg) |
| 548 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 549 | Py_VISIT(f->func_code); |
| 550 | Py_VISIT(f->func_globals); |
| 551 | Py_VISIT(f->func_module); |
| 552 | Py_VISIT(f->func_defaults); |
| 553 | Py_VISIT(f->func_kwdefaults); |
| 554 | Py_VISIT(f->func_doc); |
| 555 | Py_VISIT(f->func_name); |
| 556 | Py_VISIT(f->func_dict); |
| 557 | Py_VISIT(f->func_closure); |
| 558 | Py_VISIT(f->func_annotations); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 559 | Py_VISIT(f->func_qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 560 | return 0; |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 561 | } |
| 562 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 563 | static PyObject * |
Victor Stinner | 6f7c0ae | 2017-01-03 01:58:17 +0100 | [diff] [blame] | 564 | function_call(PyObject *func, PyObject *args, PyObject *kwargs) |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 565 | { |
Victor Stinner | 6f7c0ae | 2017-01-03 01:58:17 +0100 | [diff] [blame] | 566 | PyObject **stack; |
| 567 | Py_ssize_t nargs; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 568 | |
Victor Stinner | 6f7c0ae | 2017-01-03 01:58:17 +0100 | [diff] [blame] | 569 | stack = &PyTuple_GET_ITEM(args, 0); |
| 570 | nargs = PyTuple_GET_SIZE(args); |
| 571 | return _PyFunction_FastCallDict(func, stack, nargs, kwargs); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | /* Bind a function to an object */ |
| 575 | static PyObject * |
| 576 | func_descr_get(PyObject *func, PyObject *obj, PyObject *type) |
| 577 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 578 | if (obj == Py_None || obj == NULL) { |
| 579 | Py_INCREF(func); |
| 580 | return func; |
| 581 | } |
| 582 | return PyMethod_New(func, obj); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 585 | PyTypeObject PyFunction_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 586 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 587 | "function", |
| 588 | sizeof(PyFunctionObject), |
| 589 | 0, |
| 590 | (destructor)func_dealloc, /* tp_dealloc */ |
| 591 | 0, /* tp_print */ |
| 592 | 0, /* tp_getattr */ |
| 593 | 0, /* tp_setattr */ |
| 594 | 0, /* tp_reserved */ |
| 595 | (reprfunc)func_repr, /* tp_repr */ |
| 596 | 0, /* tp_as_number */ |
| 597 | 0, /* tp_as_sequence */ |
| 598 | 0, /* tp_as_mapping */ |
| 599 | 0, /* tp_hash */ |
| 600 | function_call, /* tp_call */ |
| 601 | 0, /* tp_str */ |
Benjamin Peterson | 2cf936f | 2012-02-19 01:16:13 -0500 | [diff] [blame] | 602 | 0, /* tp_getattro */ |
| 603 | 0, /* tp_setattro */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 604 | 0, /* tp_as_buffer */ |
| 605 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ |
| 606 | func_doc, /* tp_doc */ |
| 607 | (traverseproc)func_traverse, /* tp_traverse */ |
| 608 | 0, /* tp_clear */ |
| 609 | 0, /* tp_richcompare */ |
| 610 | offsetof(PyFunctionObject, func_weakreflist), /* tp_weaklistoffset */ |
| 611 | 0, /* tp_iter */ |
| 612 | 0, /* tp_iternext */ |
| 613 | 0, /* tp_methods */ |
| 614 | func_memberlist, /* tp_members */ |
| 615 | func_getsetlist, /* tp_getset */ |
| 616 | 0, /* tp_base */ |
| 617 | 0, /* tp_dict */ |
| 618 | func_descr_get, /* tp_descr_get */ |
| 619 | 0, /* tp_descr_set */ |
| 620 | offsetof(PyFunctionObject, func_dict), /* tp_dictoffset */ |
| 621 | 0, /* tp_init */ |
| 622 | 0, /* tp_alloc */ |
| 623 | func_new, /* tp_new */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 624 | }; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 625 | |
| 626 | |
| 627 | /* Class method object */ |
| 628 | |
| 629 | /* A class method receives the class as implicit first argument, |
| 630 | just like an instance method receives the instance. |
| 631 | To declare a class method, use this idiom: |
| 632 | |
| 633 | class C: |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 634 | @classmethod |
| 635 | def f(cls, arg1, arg2, ...): |
| 636 | ... |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 637 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 638 | It can be called either on the class (e.g. C.f()) or on an instance |
| 639 | (e.g. C().f()); the instance is ignored except for its class. |
| 640 | If a class method is called for a derived class, the derived class |
| 641 | object is passed as the implied first argument. |
| 642 | |
| 643 | Class methods are different than C++ or Java static methods. |
| 644 | If you want those, see static methods below. |
| 645 | */ |
| 646 | |
| 647 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 648 | PyObject_HEAD |
| 649 | PyObject *cm_callable; |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 650 | PyObject *cm_dict; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 651 | } classmethod; |
| 652 | |
| 653 | static void |
| 654 | cm_dealloc(classmethod *cm) |
| 655 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 656 | _PyObject_GC_UNTRACK((PyObject *)cm); |
| 657 | Py_XDECREF(cm->cm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 658 | Py_XDECREF(cm->cm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 659 | Py_TYPE(cm)->tp_free((PyObject *)cm); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 662 | static int |
| 663 | cm_traverse(classmethod *cm, visitproc visit, void *arg) |
| 664 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 665 | Py_VISIT(cm->cm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 666 | Py_VISIT(cm->cm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 667 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | static int |
| 671 | cm_clear(classmethod *cm) |
| 672 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 673 | Py_CLEAR(cm->cm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 674 | Py_CLEAR(cm->cm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 675 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 679 | static PyObject * |
| 680 | cm_descr_get(PyObject *self, PyObject *obj, PyObject *type) |
| 681 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 682 | classmethod *cm = (classmethod *)self; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 683 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 684 | if (cm->cm_callable == NULL) { |
| 685 | PyErr_SetString(PyExc_RuntimeError, |
| 686 | "uninitialized classmethod object"); |
| 687 | return NULL; |
| 688 | } |
| 689 | if (type == NULL) |
| 690 | type = (PyObject *)(Py_TYPE(obj)); |
| 691 | return PyMethod_New(cm->cm_callable, type); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | static int |
| 695 | cm_init(PyObject *self, PyObject *args, PyObject *kwds) |
| 696 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 697 | classmethod *cm = (classmethod *)self; |
| 698 | PyObject *callable; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 699 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 700 | if (!PyArg_UnpackTuple(args, "classmethod", 1, 1, &callable)) |
| 701 | return -1; |
| 702 | if (!_PyArg_NoKeywords("classmethod", kwds)) |
| 703 | return -1; |
| 704 | Py_INCREF(callable); |
| 705 | cm->cm_callable = callable; |
| 706 | return 0; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 707 | } |
| 708 | |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 709 | static PyMemberDef cm_memberlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 710 | {"__func__", T_OBJECT, offsetof(classmethod, cm_callable), READONLY}, |
| 711 | {NULL} /* Sentinel */ |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 712 | }; |
| 713 | |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 714 | static PyObject * |
| 715 | cm_get___isabstractmethod__(classmethod *cm, void *closure) |
| 716 | { |
| 717 | int res = _PyObject_IsAbstract(cm->cm_callable); |
| 718 | if (res == -1) { |
| 719 | return NULL; |
| 720 | } |
| 721 | else if (res) { |
| 722 | Py_RETURN_TRUE; |
| 723 | } |
| 724 | Py_RETURN_FALSE; |
| 725 | } |
| 726 | |
| 727 | static PyGetSetDef cm_getsetlist[] = { |
| 728 | {"__isabstractmethod__", |
| 729 | (getter)cm_get___isabstractmethod__, NULL, |
| 730 | NULL, |
| 731 | NULL}, |
Benjamin Peterson | 23d7f12 | 2012-02-19 20:02:57 -0500 | [diff] [blame] | 732 | {"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict, NULL, NULL}, |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 733 | {NULL} /* Sentinel */ |
| 734 | }; |
| 735 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 736 | PyDoc_STRVAR(classmethod_doc, |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 737 | "classmethod(function) -> method\n\ |
| 738 | \n\ |
| 739 | Convert a function to be a class method.\n\ |
| 740 | \n\ |
| 741 | A class method receives the class as implicit first argument,\n\ |
| 742 | just like an instance method receives the instance.\n\ |
| 743 | To declare a class method, use this idiom:\n\ |
| 744 | \n\ |
| 745 | class C:\n\ |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 746 | @classmethod\n\ |
| 747 | def f(cls, arg1, arg2, ...):\n\ |
| 748 | ...\n\ |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 749 | \n\ |
| 750 | It can be called either on the class (e.g. C.f()) or on an instance\n\ |
| 751 | (e.g. C().f()). The instance is ignored except for its class.\n\ |
| 752 | If a class method is called for a derived class, the derived class\n\ |
| 753 | object is passed as the implied first argument.\n\ |
Sjoerd Mullender | 564980b | 2001-12-17 11:39:56 +0000 | [diff] [blame] | 754 | \n\ |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 755 | Class methods are different than C++ or Java static methods.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 756 | If you want those, see the staticmethod builtin."); |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 757 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 758 | PyTypeObject PyClassMethod_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 759 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 760 | "classmethod", |
| 761 | sizeof(classmethod), |
| 762 | 0, |
| 763 | (destructor)cm_dealloc, /* tp_dealloc */ |
| 764 | 0, /* tp_print */ |
| 765 | 0, /* tp_getattr */ |
| 766 | 0, /* tp_setattr */ |
| 767 | 0, /* tp_reserved */ |
| 768 | 0, /* tp_repr */ |
| 769 | 0, /* tp_as_number */ |
| 770 | 0, /* tp_as_sequence */ |
| 771 | 0, /* tp_as_mapping */ |
| 772 | 0, /* tp_hash */ |
| 773 | 0, /* tp_call */ |
| 774 | 0, /* tp_str */ |
Benjamin Peterson | 2cf936f | 2012-02-19 01:16:13 -0500 | [diff] [blame] | 775 | 0, /* tp_getattro */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 776 | 0, /* tp_setattro */ |
| 777 | 0, /* tp_as_buffer */ |
| 778 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, |
| 779 | classmethod_doc, /* tp_doc */ |
| 780 | (traverseproc)cm_traverse, /* tp_traverse */ |
| 781 | (inquiry)cm_clear, /* tp_clear */ |
| 782 | 0, /* tp_richcompare */ |
| 783 | 0, /* tp_weaklistoffset */ |
| 784 | 0, /* tp_iter */ |
| 785 | 0, /* tp_iternext */ |
| 786 | 0, /* tp_methods */ |
| 787 | cm_memberlist, /* tp_members */ |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 788 | cm_getsetlist, /* tp_getset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 789 | 0, /* tp_base */ |
| 790 | 0, /* tp_dict */ |
| 791 | cm_descr_get, /* tp_descr_get */ |
| 792 | 0, /* tp_descr_set */ |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 793 | offsetof(classmethod, cm_dict), /* tp_dictoffset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 794 | cm_init, /* tp_init */ |
| 795 | PyType_GenericAlloc, /* tp_alloc */ |
| 796 | PyType_GenericNew, /* tp_new */ |
| 797 | PyObject_GC_Del, /* tp_free */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 798 | }; |
| 799 | |
| 800 | PyObject * |
| 801 | PyClassMethod_New(PyObject *callable) |
| 802 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 803 | classmethod *cm = (classmethod *) |
| 804 | PyType_GenericAlloc(&PyClassMethod_Type, 0); |
| 805 | if (cm != NULL) { |
| 806 | Py_INCREF(callable); |
| 807 | cm->cm_callable = callable; |
| 808 | } |
| 809 | return (PyObject *)cm; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | |
| 813 | /* Static method object */ |
| 814 | |
| 815 | /* A static method does not receive an implicit first argument. |
| 816 | To declare a static method, use this idiom: |
| 817 | |
| 818 | class C: |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 819 | @staticmethod |
| 820 | def f(arg1, arg2, ...): |
| 821 | ... |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 822 | |
| 823 | It can be called either on the class (e.g. C.f()) or on an instance |
| 824 | (e.g. C().f()); the instance is ignored except for its class. |
| 825 | |
| 826 | Static methods in Python are similar to those found in Java or C++. |
| 827 | For a more advanced concept, see class methods above. |
| 828 | */ |
| 829 | |
| 830 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 831 | PyObject_HEAD |
| 832 | PyObject *sm_callable; |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 833 | PyObject *sm_dict; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 834 | } staticmethod; |
| 835 | |
| 836 | static void |
| 837 | sm_dealloc(staticmethod *sm) |
| 838 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 839 | _PyObject_GC_UNTRACK((PyObject *)sm); |
| 840 | Py_XDECREF(sm->sm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 841 | Py_XDECREF(sm->sm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 842 | Py_TYPE(sm)->tp_free((PyObject *)sm); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 843 | } |
| 844 | |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 845 | static int |
| 846 | sm_traverse(staticmethod *sm, visitproc visit, void *arg) |
| 847 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 848 | Py_VISIT(sm->sm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 849 | Py_VISIT(sm->sm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 850 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | static int |
| 854 | sm_clear(staticmethod *sm) |
| 855 | { |
Benjamin Peterson | 496c53d | 2012-02-19 01:11:56 -0500 | [diff] [blame] | 856 | Py_CLEAR(sm->sm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 857 | Py_CLEAR(sm->sm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 858 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 859 | } |
| 860 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 861 | static PyObject * |
| 862 | sm_descr_get(PyObject *self, PyObject *obj, PyObject *type) |
| 863 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 864 | staticmethod *sm = (staticmethod *)self; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 865 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 866 | if (sm->sm_callable == NULL) { |
| 867 | PyErr_SetString(PyExc_RuntimeError, |
| 868 | "uninitialized staticmethod object"); |
| 869 | return NULL; |
| 870 | } |
| 871 | Py_INCREF(sm->sm_callable); |
| 872 | return sm->sm_callable; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | static int |
| 876 | sm_init(PyObject *self, PyObject *args, PyObject *kwds) |
| 877 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 878 | staticmethod *sm = (staticmethod *)self; |
| 879 | PyObject *callable; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 880 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 881 | if (!PyArg_UnpackTuple(args, "staticmethod", 1, 1, &callable)) |
| 882 | return -1; |
| 883 | if (!_PyArg_NoKeywords("staticmethod", kwds)) |
| 884 | return -1; |
| 885 | Py_INCREF(callable); |
| 886 | sm->sm_callable = callable; |
| 887 | return 0; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 888 | } |
| 889 | |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 890 | static PyMemberDef sm_memberlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 891 | {"__func__", T_OBJECT, offsetof(staticmethod, sm_callable), READONLY}, |
| 892 | {NULL} /* Sentinel */ |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 893 | }; |
| 894 | |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 895 | static PyObject * |
| 896 | sm_get___isabstractmethod__(staticmethod *sm, void *closure) |
| 897 | { |
| 898 | int res = _PyObject_IsAbstract(sm->sm_callable); |
| 899 | if (res == -1) { |
| 900 | return NULL; |
| 901 | } |
| 902 | else if (res) { |
| 903 | Py_RETURN_TRUE; |
| 904 | } |
| 905 | Py_RETURN_FALSE; |
| 906 | } |
| 907 | |
| 908 | static PyGetSetDef sm_getsetlist[] = { |
| 909 | {"__isabstractmethod__", |
| 910 | (getter)sm_get___isabstractmethod__, NULL, |
| 911 | NULL, |
| 912 | NULL}, |
Benjamin Peterson | 23d7f12 | 2012-02-19 20:02:57 -0500 | [diff] [blame] | 913 | {"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict, NULL, NULL}, |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 914 | {NULL} /* Sentinel */ |
| 915 | }; |
| 916 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 917 | PyDoc_STRVAR(staticmethod_doc, |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 918 | "staticmethod(function) -> method\n\ |
| 919 | \n\ |
| 920 | Convert a function to be a static method.\n\ |
| 921 | \n\ |
| 922 | A static method does not receive an implicit first argument.\n\ |
| 923 | To declare a static method, use this idiom:\n\ |
| 924 | \n\ |
| 925 | class C:\n\ |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 926 | @staticmethod\n\ |
| 927 | def f(arg1, arg2, ...):\n\ |
| 928 | ...\n\ |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 929 | \n\ |
| 930 | It can be called either on the class (e.g. C.f()) or on an instance\n\ |
| 931 | (e.g. C().f()). The instance is ignored except for its class.\n\ |
| 932 | \n\ |
| 933 | Static methods in Python are similar to those found in Java or C++.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 934 | For a more advanced concept, see the classmethod builtin."); |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 935 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 936 | PyTypeObject PyStaticMethod_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 937 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 938 | "staticmethod", |
| 939 | sizeof(staticmethod), |
| 940 | 0, |
| 941 | (destructor)sm_dealloc, /* tp_dealloc */ |
| 942 | 0, /* tp_print */ |
| 943 | 0, /* tp_getattr */ |
| 944 | 0, /* tp_setattr */ |
| 945 | 0, /* tp_reserved */ |
| 946 | 0, /* tp_repr */ |
| 947 | 0, /* tp_as_number */ |
| 948 | 0, /* tp_as_sequence */ |
| 949 | 0, /* tp_as_mapping */ |
| 950 | 0, /* tp_hash */ |
| 951 | 0, /* tp_call */ |
| 952 | 0, /* tp_str */ |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 953 | 0, /* tp_getattro */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 954 | 0, /* tp_setattro */ |
| 955 | 0, /* tp_as_buffer */ |
| 956 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, |
| 957 | staticmethod_doc, /* tp_doc */ |
| 958 | (traverseproc)sm_traverse, /* tp_traverse */ |
| 959 | (inquiry)sm_clear, /* tp_clear */ |
| 960 | 0, /* tp_richcompare */ |
| 961 | 0, /* tp_weaklistoffset */ |
| 962 | 0, /* tp_iter */ |
| 963 | 0, /* tp_iternext */ |
| 964 | 0, /* tp_methods */ |
| 965 | sm_memberlist, /* tp_members */ |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 966 | sm_getsetlist, /* tp_getset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 967 | 0, /* tp_base */ |
| 968 | 0, /* tp_dict */ |
| 969 | sm_descr_get, /* tp_descr_get */ |
| 970 | 0, /* tp_descr_set */ |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 971 | offsetof(staticmethod, sm_dict), /* tp_dictoffset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 972 | sm_init, /* tp_init */ |
| 973 | PyType_GenericAlloc, /* tp_alloc */ |
| 974 | PyType_GenericNew, /* tp_new */ |
| 975 | PyObject_GC_Del, /* tp_free */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 976 | }; |
| 977 | |
| 978 | PyObject * |
| 979 | PyStaticMethod_New(PyObject *callable) |
| 980 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 981 | staticmethod *sm = (staticmethod *) |
| 982 | PyType_GenericAlloc(&PyStaticMethod_Type, 0); |
| 983 | if (sm != NULL) { |
| 984 | Py_INCREF(callable); |
| 985 | sm->sm_callable = callable; |
| 986 | } |
| 987 | return (PyObject *)sm; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 988 | } |