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) { |
| 325 | Py_INCREF(Py_None); |
| 326 | return Py_None; |
| 327 | } |
| 328 | Py_INCREF(op->func_defaults); |
| 329 | return op->func_defaults; |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | static int |
| 333 | func_set_defaults(PyFunctionObject *op, PyObject *value) |
| 334 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 335 | /* Legal to del f.func_defaults. |
| 336 | * Can only set func_defaults to NULL or a tuple. */ |
| 337 | if (value == Py_None) |
| 338 | value = NULL; |
| 339 | if (value != NULL && !PyTuple_Check(value)) { |
| 340 | PyErr_SetString(PyExc_TypeError, |
| 341 | "__defaults__ must be set to a tuple object"); |
| 342 | return -1; |
| 343 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 344 | Py_XINCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 345 | Py_XSETREF(op->func_defaults, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 346 | return 0; |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 347 | } |
| 348 | |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 349 | static PyObject * |
| 350 | func_get_kwdefaults(PyFunctionObject *op) |
| 351 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 352 | if (op->func_kwdefaults == NULL) { |
| 353 | Py_INCREF(Py_None); |
| 354 | return Py_None; |
| 355 | } |
| 356 | Py_INCREF(op->func_kwdefaults); |
| 357 | return op->func_kwdefaults; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | static int |
| 361 | func_set_kwdefaults(PyFunctionObject *op, PyObject *value) |
| 362 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 363 | if (value == Py_None) |
| 364 | value = NULL; |
| 365 | /* Legal to del f.func_kwdefaults. |
| 366 | * Can only set func_kwdefaults to NULL or a dict. */ |
| 367 | if (value != NULL && !PyDict_Check(value)) { |
| 368 | PyErr_SetString(PyExc_TypeError, |
| 369 | "__kwdefaults__ must be set to a dict object"); |
| 370 | return -1; |
| 371 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 372 | Py_XINCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 373 | Py_XSETREF(op->func_kwdefaults, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 374 | return 0; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 377 | static PyObject * |
| 378 | func_get_annotations(PyFunctionObject *op) |
| 379 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 380 | if (op->func_annotations == NULL) { |
| 381 | op->func_annotations = PyDict_New(); |
| 382 | if (op->func_annotations == NULL) |
| 383 | return NULL; |
| 384 | } |
| 385 | Py_INCREF(op->func_annotations); |
| 386 | return op->func_annotations; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | static int |
| 390 | func_set_annotations(PyFunctionObject *op, PyObject *value) |
| 391 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 392 | if (value == Py_None) |
| 393 | value = NULL; |
| 394 | /* Legal to del f.func_annotations. |
| 395 | * Can only set func_annotations to NULL (through C api) |
| 396 | * or a dict. */ |
| 397 | if (value != NULL && !PyDict_Check(value)) { |
| 398 | PyErr_SetString(PyExc_TypeError, |
| 399 | "__annotations__ must be set to a dict object"); |
| 400 | return -1; |
| 401 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 402 | Py_XINCREF(value); |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 403 | Py_XSETREF(op->func_annotations, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 404 | return 0; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 405 | } |
| 406 | |
Guido van Rossum | 32d34c8 | 2001-09-20 21:45:26 +0000 | [diff] [blame] | 407 | static PyGetSetDef func_getsetlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 408 | {"__code__", (getter)func_get_code, (setter)func_set_code}, |
| 409 | {"__defaults__", (getter)func_get_defaults, |
| 410 | (setter)func_set_defaults}, |
| 411 | {"__kwdefaults__", (getter)func_get_kwdefaults, |
| 412 | (setter)func_set_kwdefaults}, |
| 413 | {"__annotations__", (getter)func_get_annotations, |
| 414 | (setter)func_set_annotations}, |
Benjamin Peterson | 23d7f12 | 2012-02-19 20:02:57 -0500 | [diff] [blame] | 415 | {"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 416 | {"__name__", (getter)func_get_name, (setter)func_set_name}, |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 417 | {"__qualname__", (getter)func_get_qualname, (setter)func_set_qualname}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 418 | {NULL} /* Sentinel */ |
Guido van Rossum | d9d1d4a | 2001-09-17 23:46:56 +0000 | [diff] [blame] | 419 | }; |
| 420 | |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 421 | PyDoc_STRVAR(func_doc, |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 422 | "function(code, globals[, name[, argdefs[, closure]]])\n\ |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 423 | \n\ |
| 424 | Create a function object from a code object and a dictionary.\n\ |
| 425 | The optional name string overrides the name from the code object.\n\ |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 426 | The optional argdefs tuple specifies the default argument values.\n\ |
| 427 | The optional closure tuple supplies the bindings for free variables."); |
| 428 | |
| 429 | /* func_new() maintains the following invariants for closures. The |
| 430 | closure must correspond to the free variables of the code object. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 431 | |
| 432 | if len(code.co_freevars) == 0: |
| 433 | closure = NULL |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 434 | else: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 435 | len(closure) == len(code.co_freevars) |
Jeremy Hylton | df3f793 | 2002-07-11 18:30:27 +0000 | [diff] [blame] | 436 | for every elt in closure, type(elt) == cell |
| 437 | */ |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 438 | |
| 439 | static PyObject * |
| 440 | func_new(PyTypeObject* type, PyObject* args, PyObject* kw) |
| 441 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 442 | PyCodeObject *code; |
| 443 | PyObject *globals; |
| 444 | PyObject *name = Py_None; |
| 445 | PyObject *defaults = Py_None; |
| 446 | PyObject *closure = Py_None; |
| 447 | PyFunctionObject *newfunc; |
| 448 | Py_ssize_t nfree, nclosure; |
| 449 | static char *kwlist[] = {"code", "globals", "name", |
| 450 | "argdefs", "closure", 0}; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 451 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 452 | if (!PyArg_ParseTupleAndKeywords(args, kw, "O!O!|OOO:function", |
| 453 | kwlist, |
| 454 | &PyCode_Type, &code, |
| 455 | &PyDict_Type, &globals, |
| 456 | &name, &defaults, &closure)) |
| 457 | return NULL; |
| 458 | if (name != Py_None && !PyUnicode_Check(name)) { |
| 459 | PyErr_SetString(PyExc_TypeError, |
| 460 | "arg 3 (name) must be None or string"); |
| 461 | return NULL; |
| 462 | } |
| 463 | if (defaults != Py_None && !PyTuple_Check(defaults)) { |
| 464 | PyErr_SetString(PyExc_TypeError, |
| 465 | "arg 4 (defaults) must be None or tuple"); |
| 466 | return NULL; |
| 467 | } |
| 468 | nfree = PyTuple_GET_SIZE(code->co_freevars); |
| 469 | if (!PyTuple_Check(closure)) { |
| 470 | if (nfree && closure == Py_None) { |
| 471 | PyErr_SetString(PyExc_TypeError, |
| 472 | "arg 5 (closure) must be tuple"); |
| 473 | return NULL; |
| 474 | } |
| 475 | else if (closure != Py_None) { |
| 476 | PyErr_SetString(PyExc_TypeError, |
| 477 | "arg 5 (closure) must be None or tuple"); |
| 478 | return NULL; |
| 479 | } |
| 480 | } |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 481 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 482 | /* check that the closure is well-formed */ |
| 483 | nclosure = closure == Py_None ? 0 : PyTuple_GET_SIZE(closure); |
| 484 | if (nfree != nclosure) |
| 485 | return PyErr_Format(PyExc_ValueError, |
| 486 | "%U requires closure of length %zd, not %zd", |
| 487 | code->co_name, nfree, nclosure); |
| 488 | if (nclosure) { |
| 489 | Py_ssize_t i; |
| 490 | for (i = 0; i < nclosure; i++) { |
| 491 | PyObject *o = PyTuple_GET_ITEM(closure, i); |
| 492 | if (!PyCell_Check(o)) { |
| 493 | return PyErr_Format(PyExc_TypeError, |
| 494 | "arg 5 (closure) expected cell, found %s", |
| 495 | o->ob_type->tp_name); |
| 496 | } |
| 497 | } |
| 498 | } |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 499 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 500 | newfunc = (PyFunctionObject *)PyFunction_New((PyObject *)code, |
| 501 | globals); |
| 502 | if (newfunc == NULL) |
| 503 | return NULL; |
| 504 | |
| 505 | if (name != Py_None) { |
| 506 | Py_INCREF(name); |
Serhiy Storchaka | 57a01d3 | 2016-04-10 18:05:40 +0300 | [diff] [blame] | 507 | Py_SETREF(newfunc->func_name, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 508 | } |
| 509 | if (defaults != Py_None) { |
| 510 | Py_INCREF(defaults); |
| 511 | newfunc->func_defaults = defaults; |
| 512 | } |
| 513 | if (closure != Py_None) { |
| 514 | Py_INCREF(closure); |
| 515 | newfunc->func_closure = closure; |
| 516 | } |
| 517 | |
| 518 | return (PyObject *)newfunc; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 521 | static void |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 522 | func_dealloc(PyFunctionObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 523 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 524 | _PyObject_GC_UNTRACK(op); |
| 525 | if (op->func_weakreflist != NULL) |
| 526 | PyObject_ClearWeakRefs((PyObject *) op); |
| 527 | Py_DECREF(op->func_code); |
| 528 | Py_DECREF(op->func_globals); |
| 529 | Py_XDECREF(op->func_module); |
| 530 | Py_DECREF(op->func_name); |
| 531 | Py_XDECREF(op->func_defaults); |
| 532 | Py_XDECREF(op->func_kwdefaults); |
| 533 | Py_XDECREF(op->func_doc); |
| 534 | Py_XDECREF(op->func_dict); |
| 535 | Py_XDECREF(op->func_closure); |
| 536 | Py_XDECREF(op->func_annotations); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 537 | Py_XDECREF(op->func_qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 538 | PyObject_GC_Del(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 541 | static PyObject* |
Fred Drake | ee238b9 | 2000-07-09 06:03:25 +0000 | [diff] [blame] | 542 | func_repr(PyFunctionObject *op) |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 543 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 544 | return PyUnicode_FromFormat("<function %U at %p>", |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 545 | op->func_qualname, op); |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 546 | } |
| 547 | |
Guido van Rossum | 2e8f8a3 | 1993-11-05 10:20:10 +0000 | [diff] [blame] | 548 | static int |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 549 | func_traverse(PyFunctionObject *f, visitproc visit, void *arg) |
| 550 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 551 | Py_VISIT(f->func_code); |
| 552 | Py_VISIT(f->func_globals); |
| 553 | Py_VISIT(f->func_module); |
| 554 | Py_VISIT(f->func_defaults); |
| 555 | Py_VISIT(f->func_kwdefaults); |
| 556 | Py_VISIT(f->func_doc); |
| 557 | Py_VISIT(f->func_name); |
| 558 | Py_VISIT(f->func_dict); |
| 559 | Py_VISIT(f->func_closure); |
| 560 | Py_VISIT(f->func_annotations); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 561 | Py_VISIT(f->func_qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 562 | return 0; |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 563 | } |
| 564 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 565 | static PyObject * |
Victor Stinner | 6f7c0ae | 2017-01-03 01:58:17 +0100 | [diff] [blame] | 566 | function_call(PyObject *func, PyObject *args, PyObject *kwargs) |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 567 | { |
Victor Stinner | 6f7c0ae | 2017-01-03 01:58:17 +0100 | [diff] [blame] | 568 | PyObject **stack; |
| 569 | Py_ssize_t nargs; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 570 | |
Victor Stinner | 6f7c0ae | 2017-01-03 01:58:17 +0100 | [diff] [blame] | 571 | stack = &PyTuple_GET_ITEM(args, 0); |
| 572 | nargs = PyTuple_GET_SIZE(args); |
| 573 | return _PyFunction_FastCallDict(func, stack, nargs, kwargs); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | /* Bind a function to an object */ |
| 577 | static PyObject * |
| 578 | func_descr_get(PyObject *func, PyObject *obj, PyObject *type) |
| 579 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 580 | if (obj == Py_None || obj == NULL) { |
| 581 | Py_INCREF(func); |
| 582 | return func; |
| 583 | } |
| 584 | return PyMethod_New(func, obj); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 585 | } |
| 586 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 587 | PyTypeObject PyFunction_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 588 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 589 | "function", |
| 590 | sizeof(PyFunctionObject), |
| 591 | 0, |
| 592 | (destructor)func_dealloc, /* tp_dealloc */ |
| 593 | 0, /* tp_print */ |
| 594 | 0, /* tp_getattr */ |
| 595 | 0, /* tp_setattr */ |
| 596 | 0, /* tp_reserved */ |
| 597 | (reprfunc)func_repr, /* tp_repr */ |
| 598 | 0, /* tp_as_number */ |
| 599 | 0, /* tp_as_sequence */ |
| 600 | 0, /* tp_as_mapping */ |
| 601 | 0, /* tp_hash */ |
| 602 | function_call, /* tp_call */ |
| 603 | 0, /* tp_str */ |
Benjamin Peterson | 2cf936f | 2012-02-19 01:16:13 -0500 | [diff] [blame] | 604 | 0, /* tp_getattro */ |
| 605 | 0, /* tp_setattro */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 606 | 0, /* tp_as_buffer */ |
| 607 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ |
| 608 | func_doc, /* tp_doc */ |
| 609 | (traverseproc)func_traverse, /* tp_traverse */ |
| 610 | 0, /* tp_clear */ |
| 611 | 0, /* tp_richcompare */ |
| 612 | offsetof(PyFunctionObject, func_weakreflist), /* tp_weaklistoffset */ |
| 613 | 0, /* tp_iter */ |
| 614 | 0, /* tp_iternext */ |
| 615 | 0, /* tp_methods */ |
| 616 | func_memberlist, /* tp_members */ |
| 617 | func_getsetlist, /* tp_getset */ |
| 618 | 0, /* tp_base */ |
| 619 | 0, /* tp_dict */ |
| 620 | func_descr_get, /* tp_descr_get */ |
| 621 | 0, /* tp_descr_set */ |
| 622 | offsetof(PyFunctionObject, func_dict), /* tp_dictoffset */ |
| 623 | 0, /* tp_init */ |
| 624 | 0, /* tp_alloc */ |
| 625 | func_new, /* tp_new */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 626 | }; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 627 | |
| 628 | |
| 629 | /* Class method object */ |
| 630 | |
| 631 | /* A class method receives the class as implicit first argument, |
| 632 | just like an instance method receives the instance. |
| 633 | To declare a class method, use this idiom: |
| 634 | |
| 635 | class C: |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 636 | @classmethod |
| 637 | def f(cls, arg1, arg2, ...): |
| 638 | ... |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 639 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 640 | It can be called either on the class (e.g. C.f()) or on an instance |
| 641 | (e.g. C().f()); the instance is ignored except for its class. |
| 642 | If a class method is called for a derived class, the derived class |
| 643 | object is passed as the implied first argument. |
| 644 | |
| 645 | Class methods are different than C++ or Java static methods. |
| 646 | If you want those, see static methods below. |
| 647 | */ |
| 648 | |
| 649 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 650 | PyObject_HEAD |
| 651 | PyObject *cm_callable; |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 652 | PyObject *cm_dict; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 653 | } classmethod; |
| 654 | |
| 655 | static void |
| 656 | cm_dealloc(classmethod *cm) |
| 657 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 658 | _PyObject_GC_UNTRACK((PyObject *)cm); |
| 659 | Py_XDECREF(cm->cm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 660 | Py_XDECREF(cm->cm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 661 | Py_TYPE(cm)->tp_free((PyObject *)cm); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 662 | } |
| 663 | |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 664 | static int |
| 665 | cm_traverse(classmethod *cm, visitproc visit, void *arg) |
| 666 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 667 | Py_VISIT(cm->cm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 668 | Py_VISIT(cm->cm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 669 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 670 | } |
| 671 | |
| 672 | static int |
| 673 | cm_clear(classmethod *cm) |
| 674 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 675 | Py_CLEAR(cm->cm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 676 | Py_CLEAR(cm->cm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 677 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 681 | static PyObject * |
| 682 | cm_descr_get(PyObject *self, PyObject *obj, PyObject *type) |
| 683 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 684 | classmethod *cm = (classmethod *)self; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 685 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 686 | if (cm->cm_callable == NULL) { |
| 687 | PyErr_SetString(PyExc_RuntimeError, |
| 688 | "uninitialized classmethod object"); |
| 689 | return NULL; |
| 690 | } |
| 691 | if (type == NULL) |
| 692 | type = (PyObject *)(Py_TYPE(obj)); |
| 693 | return PyMethod_New(cm->cm_callable, type); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | static int |
| 697 | cm_init(PyObject *self, PyObject *args, PyObject *kwds) |
| 698 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 699 | classmethod *cm = (classmethod *)self; |
| 700 | PyObject *callable; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 701 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 702 | if (!PyArg_UnpackTuple(args, "classmethod", 1, 1, &callable)) |
| 703 | return -1; |
| 704 | if (!_PyArg_NoKeywords("classmethod", kwds)) |
| 705 | return -1; |
| 706 | Py_INCREF(callable); |
| 707 | cm->cm_callable = callable; |
| 708 | return 0; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 711 | static PyMemberDef cm_memberlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 712 | {"__func__", T_OBJECT, offsetof(classmethod, cm_callable), READONLY}, |
| 713 | {NULL} /* Sentinel */ |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 714 | }; |
| 715 | |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 716 | static PyObject * |
| 717 | cm_get___isabstractmethod__(classmethod *cm, void *closure) |
| 718 | { |
| 719 | int res = _PyObject_IsAbstract(cm->cm_callable); |
| 720 | if (res == -1) { |
| 721 | return NULL; |
| 722 | } |
| 723 | else if (res) { |
| 724 | Py_RETURN_TRUE; |
| 725 | } |
| 726 | Py_RETURN_FALSE; |
| 727 | } |
| 728 | |
| 729 | static PyGetSetDef cm_getsetlist[] = { |
| 730 | {"__isabstractmethod__", |
| 731 | (getter)cm_get___isabstractmethod__, NULL, |
| 732 | NULL, |
| 733 | NULL}, |
Benjamin Peterson | 23d7f12 | 2012-02-19 20:02:57 -0500 | [diff] [blame] | 734 | {"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict, NULL, NULL}, |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 735 | {NULL} /* Sentinel */ |
| 736 | }; |
| 737 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 738 | PyDoc_STRVAR(classmethod_doc, |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 739 | "classmethod(function) -> method\n\ |
| 740 | \n\ |
| 741 | Convert a function to be a class method.\n\ |
| 742 | \n\ |
| 743 | A class method receives the class as implicit first argument,\n\ |
| 744 | just like an instance method receives the instance.\n\ |
| 745 | To declare a class method, use this idiom:\n\ |
| 746 | \n\ |
| 747 | class C:\n\ |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 748 | @classmethod\n\ |
| 749 | def f(cls, arg1, arg2, ...):\n\ |
| 750 | ...\n\ |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 751 | \n\ |
| 752 | It can be called either on the class (e.g. C.f()) or on an instance\n\ |
| 753 | (e.g. C().f()). The instance is ignored except for its class.\n\ |
| 754 | If a class method is called for a derived class, the derived class\n\ |
| 755 | object is passed as the implied first argument.\n\ |
Sjoerd Mullender | 564980b | 2001-12-17 11:39:56 +0000 | [diff] [blame] | 756 | \n\ |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 757 | 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] | 758 | If you want those, see the staticmethod builtin."); |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 759 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 760 | PyTypeObject PyClassMethod_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 761 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 762 | "classmethod", |
| 763 | sizeof(classmethod), |
| 764 | 0, |
| 765 | (destructor)cm_dealloc, /* tp_dealloc */ |
| 766 | 0, /* tp_print */ |
| 767 | 0, /* tp_getattr */ |
| 768 | 0, /* tp_setattr */ |
| 769 | 0, /* tp_reserved */ |
| 770 | 0, /* tp_repr */ |
| 771 | 0, /* tp_as_number */ |
| 772 | 0, /* tp_as_sequence */ |
| 773 | 0, /* tp_as_mapping */ |
| 774 | 0, /* tp_hash */ |
| 775 | 0, /* tp_call */ |
| 776 | 0, /* tp_str */ |
Benjamin Peterson | 2cf936f | 2012-02-19 01:16:13 -0500 | [diff] [blame] | 777 | 0, /* tp_getattro */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 778 | 0, /* tp_setattro */ |
| 779 | 0, /* tp_as_buffer */ |
| 780 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, |
| 781 | classmethod_doc, /* tp_doc */ |
| 782 | (traverseproc)cm_traverse, /* tp_traverse */ |
| 783 | (inquiry)cm_clear, /* tp_clear */ |
| 784 | 0, /* tp_richcompare */ |
| 785 | 0, /* tp_weaklistoffset */ |
| 786 | 0, /* tp_iter */ |
| 787 | 0, /* tp_iternext */ |
| 788 | 0, /* tp_methods */ |
| 789 | cm_memberlist, /* tp_members */ |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 790 | cm_getsetlist, /* tp_getset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 791 | 0, /* tp_base */ |
| 792 | 0, /* tp_dict */ |
| 793 | cm_descr_get, /* tp_descr_get */ |
| 794 | 0, /* tp_descr_set */ |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 795 | offsetof(classmethod, cm_dict), /* tp_dictoffset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 796 | cm_init, /* tp_init */ |
| 797 | PyType_GenericAlloc, /* tp_alloc */ |
| 798 | PyType_GenericNew, /* tp_new */ |
| 799 | PyObject_GC_Del, /* tp_free */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 800 | }; |
| 801 | |
| 802 | PyObject * |
| 803 | PyClassMethod_New(PyObject *callable) |
| 804 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 805 | classmethod *cm = (classmethod *) |
| 806 | PyType_GenericAlloc(&PyClassMethod_Type, 0); |
| 807 | if (cm != NULL) { |
| 808 | Py_INCREF(callable); |
| 809 | cm->cm_callable = callable; |
| 810 | } |
| 811 | return (PyObject *)cm; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | |
| 815 | /* Static method object */ |
| 816 | |
| 817 | /* A static method does not receive an implicit first argument. |
| 818 | To declare a static method, use this idiom: |
| 819 | |
| 820 | class C: |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 821 | @staticmethod |
| 822 | def f(arg1, arg2, ...): |
| 823 | ... |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 824 | |
| 825 | It can be called either on the class (e.g. C.f()) or on an instance |
| 826 | (e.g. C().f()); the instance is ignored except for its class. |
| 827 | |
| 828 | Static methods in Python are similar to those found in Java or C++. |
| 829 | For a more advanced concept, see class methods above. |
| 830 | */ |
| 831 | |
| 832 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 833 | PyObject_HEAD |
| 834 | PyObject *sm_callable; |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 835 | PyObject *sm_dict; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 836 | } staticmethod; |
| 837 | |
| 838 | static void |
| 839 | sm_dealloc(staticmethod *sm) |
| 840 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 841 | _PyObject_GC_UNTRACK((PyObject *)sm); |
| 842 | Py_XDECREF(sm->sm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 843 | Py_XDECREF(sm->sm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 844 | Py_TYPE(sm)->tp_free((PyObject *)sm); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 845 | } |
| 846 | |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 847 | static int |
| 848 | sm_traverse(staticmethod *sm, visitproc visit, void *arg) |
| 849 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 850 | Py_VISIT(sm->sm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 851 | Py_VISIT(sm->sm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 852 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 853 | } |
| 854 | |
| 855 | static int |
| 856 | sm_clear(staticmethod *sm) |
| 857 | { |
Benjamin Peterson | 496c53d | 2012-02-19 01:11:56 -0500 | [diff] [blame] | 858 | Py_CLEAR(sm->sm_callable); |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 859 | Py_CLEAR(sm->sm_dict); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 860 | return 0; |
Jeremy Hylton | 400d8ee | 2003-04-08 21:28:47 +0000 | [diff] [blame] | 861 | } |
| 862 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 863 | static PyObject * |
| 864 | sm_descr_get(PyObject *self, PyObject *obj, PyObject *type) |
| 865 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 866 | staticmethod *sm = (staticmethod *)self; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 867 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 868 | if (sm->sm_callable == NULL) { |
| 869 | PyErr_SetString(PyExc_RuntimeError, |
| 870 | "uninitialized staticmethod object"); |
| 871 | return NULL; |
| 872 | } |
| 873 | Py_INCREF(sm->sm_callable); |
| 874 | return sm->sm_callable; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | static int |
| 878 | sm_init(PyObject *self, PyObject *args, PyObject *kwds) |
| 879 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 880 | staticmethod *sm = (staticmethod *)self; |
| 881 | PyObject *callable; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 882 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 883 | if (!PyArg_UnpackTuple(args, "staticmethod", 1, 1, &callable)) |
| 884 | return -1; |
| 885 | if (!_PyArg_NoKeywords("staticmethod", kwds)) |
| 886 | return -1; |
| 887 | Py_INCREF(callable); |
| 888 | sm->sm_callable = callable; |
| 889 | return 0; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 890 | } |
| 891 | |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 892 | static PyMemberDef sm_memberlist[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 893 | {"__func__", T_OBJECT, offsetof(staticmethod, sm_callable), READONLY}, |
| 894 | {NULL} /* Sentinel */ |
Raymond Hettinger | 2bcde14 | 2009-05-29 04:52:27 +0000 | [diff] [blame] | 895 | }; |
| 896 | |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 897 | static PyObject * |
| 898 | sm_get___isabstractmethod__(staticmethod *sm, void *closure) |
| 899 | { |
| 900 | int res = _PyObject_IsAbstract(sm->sm_callable); |
| 901 | if (res == -1) { |
| 902 | return NULL; |
| 903 | } |
| 904 | else if (res) { |
| 905 | Py_RETURN_TRUE; |
| 906 | } |
| 907 | Py_RETURN_FALSE; |
| 908 | } |
| 909 | |
| 910 | static PyGetSetDef sm_getsetlist[] = { |
| 911 | {"__isabstractmethod__", |
| 912 | (getter)sm_get___isabstractmethod__, NULL, |
| 913 | NULL, |
| 914 | NULL}, |
Benjamin Peterson | 23d7f12 | 2012-02-19 20:02:57 -0500 | [diff] [blame] | 915 | {"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict, NULL, NULL}, |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 916 | {NULL} /* Sentinel */ |
| 917 | }; |
| 918 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 919 | PyDoc_STRVAR(staticmethod_doc, |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 920 | "staticmethod(function) -> method\n\ |
| 921 | \n\ |
| 922 | Convert a function to be a static method.\n\ |
| 923 | \n\ |
| 924 | A static method does not receive an implicit first argument.\n\ |
| 925 | To declare a static method, use this idiom:\n\ |
| 926 | \n\ |
| 927 | class C:\n\ |
Martin Panter | 6d57fe1 | 2016-09-17 03:26:16 +0000 | [diff] [blame] | 928 | @staticmethod\n\ |
| 929 | def f(arg1, arg2, ...):\n\ |
| 930 | ...\n\ |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 931 | \n\ |
| 932 | It can be called either on the class (e.g. C.f()) or on an instance\n\ |
| 933 | (e.g. C().f()). The instance is ignored except for its class.\n\ |
| 934 | \n\ |
| 935 | 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] | 936 | For a more advanced concept, see the classmethod builtin."); |
Guido van Rossum | 33c1a88 | 2001-12-17 02:53:53 +0000 | [diff] [blame] | 937 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 938 | PyTypeObject PyStaticMethod_Type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 939 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 940 | "staticmethod", |
| 941 | sizeof(staticmethod), |
| 942 | 0, |
| 943 | (destructor)sm_dealloc, /* tp_dealloc */ |
| 944 | 0, /* tp_print */ |
| 945 | 0, /* tp_getattr */ |
| 946 | 0, /* tp_setattr */ |
| 947 | 0, /* tp_reserved */ |
| 948 | 0, /* tp_repr */ |
| 949 | 0, /* tp_as_number */ |
| 950 | 0, /* tp_as_sequence */ |
| 951 | 0, /* tp_as_mapping */ |
| 952 | 0, /* tp_hash */ |
| 953 | 0, /* tp_call */ |
| 954 | 0, /* tp_str */ |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 955 | 0, /* tp_getattro */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 956 | 0, /* tp_setattro */ |
| 957 | 0, /* tp_as_buffer */ |
| 958 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC, |
| 959 | staticmethod_doc, /* tp_doc */ |
| 960 | (traverseproc)sm_traverse, /* tp_traverse */ |
| 961 | (inquiry)sm_clear, /* tp_clear */ |
| 962 | 0, /* tp_richcompare */ |
| 963 | 0, /* tp_weaklistoffset */ |
| 964 | 0, /* tp_iter */ |
| 965 | 0, /* tp_iternext */ |
| 966 | 0, /* tp_methods */ |
| 967 | sm_memberlist, /* tp_members */ |
Benjamin Peterson | bfebb7b | 2011-12-15 15:34:02 -0500 | [diff] [blame] | 968 | sm_getsetlist, /* tp_getset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 969 | 0, /* tp_base */ |
| 970 | 0, /* tp_dict */ |
| 971 | sm_descr_get, /* tp_descr_get */ |
| 972 | 0, /* tp_descr_set */ |
Benjamin Peterson | 01d7eba | 2012-02-19 01:10:25 -0500 | [diff] [blame] | 973 | offsetof(staticmethod, sm_dict), /* tp_dictoffset */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 974 | sm_init, /* tp_init */ |
| 975 | PyType_GenericAlloc, /* tp_alloc */ |
| 976 | PyType_GenericNew, /* tp_new */ |
| 977 | PyObject_GC_Del, /* tp_free */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 978 | }; |
| 979 | |
| 980 | PyObject * |
| 981 | PyStaticMethod_New(PyObject *callable) |
| 982 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 983 | staticmethod *sm = (staticmethod *) |
| 984 | PyType_GenericAlloc(&PyStaticMethod_Type, 0); |
| 985 | if (sm != NULL) { |
| 986 | Py_INCREF(callable); |
| 987 | sm->sm_callable = callable; |
| 988 | } |
| 989 | return (PyObject *)sm; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 990 | } |