Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2 | /* Generic object operations; and implementation of None (NoObject) */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5 | |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 10 | #ifdef Py_REF_DEBUG |
Neal Norwitz | 84632ee | 2006-03-04 20:00:59 +0000 | [diff] [blame] | 11 | Py_ssize_t _Py_RefTotal; |
Armin Rigo | e170937 | 2006-04-12 17:06:05 +0000 | [diff] [blame] | 12 | |
| 13 | Py_ssize_t |
| 14 | _Py_GetRefTotal(void) |
| 15 | { |
| 16 | PyObject *o; |
| 17 | Py_ssize_t total = _Py_RefTotal; |
| 18 | /* ignore the references to the dummy object of the dicts and sets |
| 19 | because they are not reliable and not useful (now that the |
| 20 | hash table code is well-tested) */ |
| 21 | o = _PyDict_Dummy(); |
| 22 | if (o != NULL) |
| 23 | total -= o->ob_refcnt; |
| 24 | o = _PySet_Dummy(); |
| 25 | if (o != NULL) |
| 26 | total -= o->ob_refcnt; |
| 27 | return total; |
| 28 | } |
| 29 | #endif /* Py_REF_DEBUG */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 30 | |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 31 | int Py_DivisionWarningFlag; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 32 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 33 | /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros. |
| 34 | These are used by the individual routines for object creation. |
| 35 | Do not call them otherwise, they do not initialize the object! */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 36 | |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 37 | #ifdef Py_TRACE_REFS |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 38 | /* Head of circular doubly-linked list of all objects. These are linked |
| 39 | * together via the _ob_prev and _ob_next members of a PyObject, which |
| 40 | * exist only in a Py_TRACE_REFS build. |
| 41 | */ |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 42 | static PyObject refchain = {&refchain, &refchain}; |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 43 | |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 44 | /* Insert op at the front of the list of all objects. If force is true, |
| 45 | * op is added even if _ob_prev and _ob_next are non-NULL already. If |
| 46 | * force is false amd _ob_prev or _ob_next are non-NULL, do nothing. |
| 47 | * force should be true if and only if op points to freshly allocated, |
| 48 | * uninitialized memory, or you've unlinked op from the list and are |
Tim Peters | 51f8d38 | 2003-03-23 18:06:08 +0000 | [diff] [blame] | 49 | * relinking it into the front. |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 50 | * Note that objects are normally added to the list via _Py_NewReference, |
| 51 | * which is called by PyObject_Init. Not all objects are initialized that |
| 52 | * way, though; exceptions include statically allocated type objects, and |
| 53 | * statically allocated singletons (like Py_True and Py_None). |
| 54 | */ |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 55 | void |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 56 | _Py_AddToAllObjects(PyObject *op, int force) |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 57 | { |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 58 | #ifdef Py_DEBUG |
| 59 | if (!force) { |
| 60 | /* If it's initialized memory, op must be in or out of |
| 61 | * the list unambiguously. |
| 62 | */ |
| 63 | assert((op->_ob_prev == NULL) == (op->_ob_next == NULL)); |
| 64 | } |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 65 | #endif |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 66 | if (force || op->_ob_prev == NULL) { |
| 67 | op->_ob_next = refchain._ob_next; |
| 68 | op->_ob_prev = &refchain; |
| 69 | refchain._ob_next->_ob_prev = op; |
| 70 | refchain._ob_next = op; |
| 71 | } |
| 72 | } |
| 73 | #endif /* Py_TRACE_REFS */ |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 74 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 75 | #ifdef COUNT_ALLOCS |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 76 | static PyTypeObject *type_list; |
Andrew M. Kuchling | 2060d1b | 2006-04-18 11:49:53 +0000 | [diff] [blame] | 77 | /* All types are added to type_list, at least when |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 78 | they get one object created. That makes them |
| 79 | immortal, which unfortunately contributes to |
| 80 | garbage itself. If unlist_types_without_objects |
| 81 | is set, they will be removed from the type_list |
| 82 | once the last object is deallocated. */ |
| 83 | int unlist_types_without_objects; |
Sjoerd Mullender | 842d2cc | 1993-10-15 16:18:48 +0000 | [diff] [blame] | 84 | extern int tuple_zero_allocs, fast_tuple_allocs; |
| 85 | extern int quick_int_allocs, quick_neg_int_allocs; |
Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 86 | extern int null_strings, one_strings; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 87 | void |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 88 | dump_counts(FILE* f) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 89 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 90 | PyTypeObject *tp; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 91 | |
| 92 | for (tp = type_list; tp; tp = tp->tp_next) |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 93 | fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n", |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 94 | tp->tp_name, tp->tp_allocs, tp->tp_frees, |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 95 | tp->tp_maxalloc); |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 96 | fprintf(f, "fast tuple allocs: %d, empty: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 97 | fast_tuple_allocs, tuple_zero_allocs); |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 98 | fprintf(f, "fast int allocs: pos: %d, neg: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 99 | quick_int_allocs, quick_neg_int_allocs); |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 100 | fprintf(f, "null strings: %d, 1-strings: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 101 | null_strings, one_strings); |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 104 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 105 | get_counts(void) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 106 | { |
| 107 | PyTypeObject *tp; |
| 108 | PyObject *result; |
| 109 | PyObject *v; |
| 110 | |
| 111 | result = PyList_New(0); |
| 112 | if (result == NULL) |
| 113 | return NULL; |
| 114 | for (tp = type_list; tp; tp = tp->tp_next) { |
Georg Brandl | 2cfaa34 | 2006-05-29 19:39:45 +0000 | [diff] [blame] | 115 | v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs, |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 116 | tp->tp_frees, tp->tp_maxalloc); |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 117 | if (v == NULL) { |
| 118 | Py_DECREF(result); |
| 119 | return NULL; |
| 120 | } |
| 121 | if (PyList_Append(result, v) < 0) { |
| 122 | Py_DECREF(v); |
| 123 | Py_DECREF(result); |
| 124 | return NULL; |
| 125 | } |
| 126 | Py_DECREF(v); |
| 127 | } |
| 128 | return result; |
| 129 | } |
| 130 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 131 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 132 | inc_count(PyTypeObject *tp) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 133 | { |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 134 | if (tp->tp_next == NULL && tp->tp_prev == NULL) { |
Guido van Rossum | d8953cb | 1995-04-06 14:46:26 +0000 | [diff] [blame] | 135 | /* first time; insert in linked list */ |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 136 | if (tp->tp_next != NULL) /* sanity check */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 137 | Py_FatalError("XXX inc_count sanity check"); |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 138 | if (type_list) |
| 139 | type_list->tp_prev = tp; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 140 | tp->tp_next = type_list; |
Tim Peters | c6a3ff6 | 2002-07-08 22:11:52 +0000 | [diff] [blame] | 141 | /* Note that as of Python 2.2, heap-allocated type objects |
| 142 | * can go away, but this code requires that they stay alive |
| 143 | * until program exit. That's why we're careful with |
| 144 | * refcounts here. type_list gets a new reference to tp, |
| 145 | * while ownership of the reference type_list used to hold |
| 146 | * (if any) was transferred to tp->tp_next in the line above. |
| 147 | * tp is thus effectively immortal after this. |
| 148 | */ |
| 149 | Py_INCREF(tp); |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 150 | type_list = tp; |
Tim Peters | 3e40c7f | 2003-03-23 03:04:32 +0000 | [diff] [blame] | 151 | #ifdef Py_TRACE_REFS |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 152 | /* Also insert in the doubly-linked list of all objects, |
| 153 | * if not already there. |
| 154 | */ |
| 155 | _Py_AddToAllObjects((PyObject *)tp, 0); |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 156 | #endif |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 157 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 158 | tp->tp_allocs++; |
| 159 | if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc) |
| 160 | tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 161 | } |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 162 | |
| 163 | void dec_count(PyTypeObject *tp) |
| 164 | { |
| 165 | tp->tp_frees++; |
| 166 | if (unlist_types_without_objects && |
| 167 | tp->tp_allocs == tp->tp_frees) { |
| 168 | /* unlink the type from type_list */ |
| 169 | if (tp->tp_prev) |
| 170 | tp->tp_prev->tp_next = tp->tp_next; |
| 171 | else |
| 172 | type_list = tp->tp_next; |
| 173 | if (tp->tp_next) |
| 174 | tp->tp_next->tp_prev = tp->tp_prev; |
| 175 | tp->tp_next = tp->tp_prev = NULL; |
| 176 | Py_DECREF(tp); |
| 177 | } |
| 178 | } |
| 179 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 180 | #endif |
| 181 | |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 182 | #ifdef Py_REF_DEBUG |
| 183 | /* Log a fatal error; doesn't return. */ |
| 184 | void |
| 185 | _Py_NegativeRefcount(const char *fname, int lineno, PyObject *op) |
| 186 | { |
| 187 | char buf[300]; |
| 188 | |
| 189 | PyOS_snprintf(buf, sizeof(buf), |
Tim Peters | 4d073bb | 2006-03-23 05:38:33 +0000 | [diff] [blame] | 190 | "%s:%i object at %p has negative ref count " |
| 191 | "%" PY_FORMAT_SIZE_T "d", |
Tim Peters | 8af92d1 | 2006-03-23 05:41:24 +0000 | [diff] [blame] | 192 | fname, lineno, op, op->ob_refcnt); |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 193 | Py_FatalError(buf); |
| 194 | } |
| 195 | |
| 196 | #endif /* Py_REF_DEBUG */ |
| 197 | |
Thomas Heller | 1328b52 | 2004-04-22 17:23:49 +0000 | [diff] [blame] | 198 | void |
| 199 | Py_IncRef(PyObject *o) |
| 200 | { |
| 201 | Py_XINCREF(o); |
| 202 | } |
| 203 | |
| 204 | void |
| 205 | Py_DecRef(PyObject *o) |
| 206 | { |
| 207 | Py_XDECREF(o); |
| 208 | } |
| 209 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 210 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 211 | PyObject_Init(PyObject *op, PyTypeObject *tp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 212 | { |
Guido van Rossum | 6e08c14 | 2002-10-11 20:37:24 +0000 | [diff] [blame] | 213 | if (op == NULL) |
| 214 | return PyErr_NoMemory(); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 215 | /* Any changes should be reflected in PyObject_INIT (objimpl.h) */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 216 | op->ob_type = tp; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 217 | _Py_NewReference(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 218 | return op; |
| 219 | } |
| 220 | |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 221 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 222 | PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 223 | { |
Guido van Rossum | 6e08c14 | 2002-10-11 20:37:24 +0000 | [diff] [blame] | 224 | if (op == NULL) |
| 225 | return (PyVarObject *) PyErr_NoMemory(); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 226 | /* Any changes should be reflected in PyObject_INIT_VAR */ |
| 227 | op->ob_size = size; |
| 228 | op->ob_type = tp; |
| 229 | _Py_NewReference((PyObject *)op); |
| 230 | return op; |
| 231 | } |
| 232 | |
| 233 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 234 | _PyObject_New(PyTypeObject *tp) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 235 | { |
| 236 | PyObject *op; |
| 237 | op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp)); |
| 238 | if (op == NULL) |
| 239 | return PyErr_NoMemory(); |
| 240 | return PyObject_INIT(op, tp); |
| 241 | } |
| 242 | |
Guido van Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 243 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 244 | _PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 245 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 246 | PyVarObject *op; |
Tim Peters | f2a67da | 2001-10-07 03:54:51 +0000 | [diff] [blame] | 247 | const size_t size = _PyObject_VAR_SIZE(tp, nitems); |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 248 | op = (PyVarObject *) PyObject_MALLOC(size); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 249 | if (op == NULL) |
Guido van Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 250 | return (PyVarObject *)PyErr_NoMemory(); |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 251 | return PyObject_INIT_VAR(op, tp, nitems); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Neil Schemenauer | bdf0eed | 2002-04-12 03:08:42 +0000 | [diff] [blame] | 254 | /* for binary compatibility with 2.2 */ |
| 255 | #undef _PyObject_Del |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 256 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 257 | _PyObject_Del(PyObject *op) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 258 | { |
Guido van Rossum | 4cc6ac7 | 2000-07-01 01:00:38 +0000 | [diff] [blame] | 259 | PyObject_FREE(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 262 | /* Implementation of PyObject_Print with recursion checking */ |
| 263 | static int |
| 264 | internal_print(PyObject *op, FILE *fp, int flags, int nesting) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 265 | { |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 266 | int ret = 0; |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 267 | if (nesting > 10) { |
| 268 | PyErr_SetString(PyExc_RuntimeError, "print recursion"); |
| 269 | return -1; |
| 270 | } |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 271 | if (PyErr_CheckSignals()) |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 272 | return -1; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 273 | #ifdef USE_STACKCHECK |
| 274 | if (PyOS_CheckStack()) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 275 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 276 | return -1; |
| 277 | } |
| 278 | #endif |
Guido van Rossum | 687ef6e | 2000-01-12 16:28:58 +0000 | [diff] [blame] | 279 | clearerr(fp); /* Clear any previous error condition */ |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 280 | if (op == NULL) { |
| 281 | fprintf(fp, "<nil>"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 282 | } |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 283 | else { |
| 284 | if (op->ob_refcnt <= 0) |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 285 | /* XXX(twouters) cast refcount to long until %zd is |
| 286 | universally available */ |
| 287 | fprintf(fp, "<refcnt %ld at %p>", |
| 288 | (long)op->ob_refcnt, op); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 289 | else if (op->ob_type->tp_print == NULL) { |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 290 | PyObject *s; |
| 291 | if (flags & Py_PRINT_RAW) |
| 292 | s = PyObject_Str(op); |
| 293 | else |
| 294 | s = PyObject_Repr(op); |
| 295 | if (s == NULL) |
| 296 | ret = -1; |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 297 | else { |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 298 | ret = internal_print(s, fp, Py_PRINT_RAW, |
| 299 | nesting+1); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 300 | } |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 301 | Py_XDECREF(s); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 302 | } |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 303 | else |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 304 | ret = (*op->ob_type->tp_print)(op, fp, flags); |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 305 | } |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 306 | if (ret == 0) { |
| 307 | if (ferror(fp)) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 308 | PyErr_SetFromErrno(PyExc_IOError); |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 309 | clearerr(fp); |
| 310 | ret = -1; |
| 311 | } |
| 312 | } |
| 313 | return ret; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 314 | } |
| 315 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 316 | int |
| 317 | PyObject_Print(PyObject *op, FILE *fp, int flags) |
| 318 | { |
| 319 | return internal_print(op, fp, flags, 0); |
| 320 | } |
| 321 | |
| 322 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 323 | /* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 324 | void _PyObject_Dump(PyObject* op) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 325 | { |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 326 | if (op == NULL) |
| 327 | fprintf(stderr, "NULL\n"); |
| 328 | else { |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 329 | fprintf(stderr, "object : "); |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 330 | (void)PyObject_Print(op, stderr, 0); |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 331 | /* XXX(twouters) cast refcount to long until %zd is |
| 332 | universally available */ |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 333 | fprintf(stderr, "\n" |
| 334 | "type : %s\n" |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 335 | "refcount: %ld\n" |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 336 | "address : %p\n", |
| 337 | op->ob_type==NULL ? "NULL" : op->ob_type->tp_name, |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 338 | (long)op->ob_refcnt, |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 339 | op); |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 340 | } |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 341 | } |
Barry Warsaw | 903138f | 2001-01-23 16:33:18 +0000 | [diff] [blame] | 342 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 343 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 344 | PyObject_Repr(PyObject *v) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 345 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 346 | if (PyErr_CheckSignals()) |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 347 | return NULL; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 348 | #ifdef USE_STACKCHECK |
| 349 | if (PyOS_CheckStack()) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 350 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 351 | return NULL; |
| 352 | } |
| 353 | #endif |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 354 | if (v == NULL) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 355 | return PyString_FromString("<NULL>"); |
Barry Warsaw | 7ce3694 | 2001-08-24 18:34:26 +0000 | [diff] [blame] | 356 | else if (v->ob_type->tp_repr == NULL) |
Guido van Rossum | 21922aa | 2001-08-30 20:26:05 +0000 | [diff] [blame] | 357 | return PyString_FromFormat("<%s object at %p>", |
Barry Warsaw | 7ce3694 | 2001-08-24 18:34:26 +0000 | [diff] [blame] | 358 | v->ob_type->tp_name, v); |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 359 | else { |
| 360 | PyObject *res; |
| 361 | res = (*v->ob_type->tp_repr)(v); |
| 362 | if (res == NULL) |
| 363 | return NULL; |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 364 | #ifdef Py_USING_UNICODE |
Fredrik Lundh | efecc7d | 2000-07-01 14:31:09 +0000 | [diff] [blame] | 365 | if (PyUnicode_Check(res)) { |
| 366 | PyObject* str; |
Anthony Baxter | 262c00a | 2006-03-30 10:53:17 +0000 | [diff] [blame] | 367 | str = PyUnicode_AsEncodedString(res, NULL, NULL); |
Marc-André Lemburg | 891bc65 | 2000-07-03 09:57:53 +0000 | [diff] [blame] | 368 | Py_DECREF(res); |
| 369 | if (str) |
Fredrik Lundh | efecc7d | 2000-07-01 14:31:09 +0000 | [diff] [blame] | 370 | res = str; |
Marc-André Lemburg | 891bc65 | 2000-07-03 09:57:53 +0000 | [diff] [blame] | 371 | else |
| 372 | return NULL; |
Fredrik Lundh | efecc7d | 2000-07-01 14:31:09 +0000 | [diff] [blame] | 373 | } |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 374 | #endif |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 375 | if (!PyString_Check(res)) { |
| 376 | PyErr_Format(PyExc_TypeError, |
Guido van Rossum | 5db862d | 2000-04-10 12:46:51 +0000 | [diff] [blame] | 377 | "__repr__ returned non-string (type %.200s)", |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 378 | res->ob_type->tp_name); |
| 379 | Py_DECREF(res); |
| 380 | return NULL; |
| 381 | } |
| 382 | return res; |
| 383 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 384 | } |
| 385 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 386 | PyObject * |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 387 | _PyObject_Str(PyObject *v) |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 388 | { |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 389 | PyObject *res; |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 390 | int type_ok; |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 391 | if (v == NULL) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 392 | return PyString_FromString("<NULL>"); |
Tim Peters | 5a49ade | 2001-09-11 01:41:59 +0000 | [diff] [blame] | 393 | if (PyString_CheckExact(v)) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 394 | Py_INCREF(v); |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 395 | return v; |
| 396 | } |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 397 | #ifdef Py_USING_UNICODE |
| 398 | if (PyUnicode_CheckExact(v)) { |
| 399 | Py_INCREF(v); |
| 400 | return v; |
| 401 | } |
| 402 | #endif |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 403 | if (v->ob_type->tp_str == NULL) |
| 404 | return PyObject_Repr(v); |
| 405 | |
Guido van Rossum | aa97543 | 2008-04-10 22:43:58 +0000 | [diff] [blame] | 406 | /* It is possible for a type to have a tp_str representation that loops |
| 407 | infinitely. */ |
| 408 | if (Py_EnterRecursiveCall(" while getting the str of an object")) |
| 409 | return NULL; |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 410 | res = (*v->ob_type->tp_str)(v); |
Guido van Rossum | aa97543 | 2008-04-10 22:43:58 +0000 | [diff] [blame] | 411 | Py_LeaveRecursiveCall(); |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 412 | if (res == NULL) |
| 413 | return NULL; |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 414 | type_ok = PyString_Check(res); |
| 415 | #ifdef Py_USING_UNICODE |
| 416 | type_ok = type_ok || PyUnicode_Check(res); |
| 417 | #endif |
| 418 | if (!type_ok) { |
| 419 | PyErr_Format(PyExc_TypeError, |
| 420 | "__str__ returned non-string (type %.200s)", |
| 421 | res->ob_type->tp_name); |
| 422 | Py_DECREF(res); |
| 423 | return NULL; |
| 424 | } |
| 425 | return res; |
| 426 | } |
| 427 | |
| 428 | PyObject * |
| 429 | PyObject_Str(PyObject *v) |
| 430 | { |
| 431 | PyObject *res = _PyObject_Str(v); |
| 432 | if (res == NULL) |
| 433 | return NULL; |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 434 | #ifdef Py_USING_UNICODE |
Marc-André Lemburg | 891bc65 | 2000-07-03 09:57:53 +0000 | [diff] [blame] | 435 | if (PyUnicode_Check(res)) { |
| 436 | PyObject* str; |
| 437 | str = PyUnicode_AsEncodedString(res, NULL, NULL); |
| 438 | Py_DECREF(res); |
| 439 | if (str) |
| 440 | res = str; |
| 441 | else |
| 442 | return NULL; |
| 443 | } |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 444 | #endif |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 445 | assert(PyString_Check(res)); |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 446 | return res; |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 449 | #ifdef Py_USING_UNICODE |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 450 | PyObject * |
| 451 | PyObject_Unicode(PyObject *v) |
| 452 | { |
| 453 | PyObject *res; |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 454 | PyObject *func; |
Neal Norwitz | 7580146 | 2006-03-14 06:02:16 +0000 | [diff] [blame] | 455 | PyObject *str; |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 456 | static PyObject *unicodestr; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 457 | |
Georg Brandl | 3daf758 | 2006-03-13 22:22:11 +0000 | [diff] [blame] | 458 | if (v == NULL) { |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 459 | res = PyString_FromString("<NULL>"); |
Neal Norwitz | 7580146 | 2006-03-14 06:02:16 +0000 | [diff] [blame] | 460 | if (res == NULL) |
| 461 | return NULL; |
| 462 | str = PyUnicode_FromEncodedObject(res, NULL, "strict"); |
| 463 | Py_DECREF(res); |
| 464 | return str; |
Georg Brandl | 3daf758 | 2006-03-13 22:22:11 +0000 | [diff] [blame] | 465 | } else if (PyUnicode_CheckExact(v)) { |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 466 | Py_INCREF(v); |
| 467 | return v; |
| 468 | } |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 469 | /* XXX As soon as we have a tp_unicode slot, we should |
| 470 | check this before trying the __unicode__ |
| 471 | method. */ |
| 472 | if (unicodestr == NULL) { |
| 473 | unicodestr= PyString_InternFromString("__unicode__"); |
| 474 | if (unicodestr == NULL) |
| 475 | return NULL; |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 476 | } |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 477 | func = PyObject_GetAttr(v, unicodestr); |
| 478 | if (func != NULL) { |
| 479 | res = PyEval_CallObject(func, (PyObject *)NULL); |
| 480 | Py_DECREF(func); |
| 481 | } |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 482 | else { |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 483 | PyErr_Clear(); |
| 484 | if (PyUnicode_Check(v)) { |
| 485 | /* For a Unicode subtype that's didn't overwrite __unicode__, |
| 486 | return a true Unicode object with the same data. */ |
| 487 | return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v), |
| 488 | PyUnicode_GET_SIZE(v)); |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 489 | } |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 490 | if (PyString_CheckExact(v)) { |
| 491 | Py_INCREF(v); |
| 492 | res = v; |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 493 | } |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 494 | else { |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 495 | if (v->ob_type->tp_str != NULL) |
| 496 | res = (*v->ob_type->tp_str)(v); |
| 497 | else |
| 498 | res = PyObject_Repr(v); |
| 499 | } |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 500 | } |
| 501 | if (res == NULL) |
| 502 | return NULL; |
| 503 | if (!PyUnicode_Check(res)) { |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 504 | str = PyUnicode_FromEncodedObject(res, NULL, "strict"); |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 505 | Py_DECREF(res); |
Neal Norwitz | 7580146 | 2006-03-14 06:02:16 +0000 | [diff] [blame] | 506 | res = str; |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 507 | } |
| 508 | return res; |
| 509 | } |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 510 | #endif |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 511 | |
| 512 | |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 513 | /* Helper to warn about deprecated tp_compare return values. Return: |
| 514 | -2 for an exception; |
| 515 | -1 if v < w; |
| 516 | 0 if v == w; |
| 517 | 1 if v > w. |
| 518 | (This function cannot return 2.) |
| 519 | */ |
| 520 | static int |
| 521 | adjust_tp_compare(int c) |
| 522 | { |
| 523 | if (PyErr_Occurred()) { |
| 524 | if (c != -1 && c != -2) { |
| 525 | PyObject *t, *v, *tb; |
| 526 | PyErr_Fetch(&t, &v, &tb); |
| 527 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 528 | "tp_compare didn't return -1 or -2 " |
| 529 | "for exception") < 0) { |
| 530 | Py_XDECREF(t); |
| 531 | Py_XDECREF(v); |
| 532 | Py_XDECREF(tb); |
| 533 | } |
| 534 | else |
| 535 | PyErr_Restore(t, v, tb); |
| 536 | } |
| 537 | return -2; |
| 538 | } |
| 539 | else if (c < -1 || c > 1) { |
| 540 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 541 | "tp_compare didn't return -1, 0 or 1") < 0) |
| 542 | return -2; |
| 543 | else |
| 544 | return c < -1 ? -1 : 1; |
| 545 | } |
| 546 | else { |
| 547 | assert(c >= -1 && c <= 1); |
| 548 | return c; |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 553 | /* Macro to get the tp_richcompare field of a type if defined */ |
| 554 | #define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \ |
| 555 | ? (t)->tp_richcompare : NULL) |
| 556 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 557 | /* Map rich comparison operators to their swapped version, e.g. LT --> GT */ |
Brett Cannon | a5ca2e7 | 2004-09-25 01:37:24 +0000 | [diff] [blame] | 558 | int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE}; |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 559 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 560 | /* Try a genuine rich comparison, returning an object. Return: |
| 561 | NULL for exception; |
| 562 | NotImplemented if this particular rich comparison is not implemented or |
| 563 | undefined; |
| 564 | some object not equal to NotImplemented if it is implemented |
| 565 | (this latter object may not be a Boolean). |
| 566 | */ |
| 567 | static PyObject * |
| 568 | try_rich_compare(PyObject *v, PyObject *w, int op) |
| 569 | { |
| 570 | richcmpfunc f; |
| 571 | PyObject *res; |
| 572 | |
Guido van Rossum | 2ed6bf8 | 2001-09-27 20:30:07 +0000 | [diff] [blame] | 573 | if (v->ob_type != w->ob_type && |
| 574 | PyType_IsSubtype(w->ob_type, v->ob_type) && |
| 575 | (f = RICHCOMPARE(w->ob_type)) != NULL) { |
Tim Peters | f4aca75 | 2004-09-23 02:39:37 +0000 | [diff] [blame] | 576 | res = (*f)(w, v, _Py_SwappedOp[op]); |
Guido van Rossum | 2ed6bf8 | 2001-09-27 20:30:07 +0000 | [diff] [blame] | 577 | if (res != Py_NotImplemented) |
| 578 | return res; |
| 579 | Py_DECREF(res); |
| 580 | } |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 581 | if ((f = RICHCOMPARE(v->ob_type)) != NULL) { |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 582 | res = (*f)(v, w, op); |
| 583 | if (res != Py_NotImplemented) |
| 584 | return res; |
| 585 | Py_DECREF(res); |
| 586 | } |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 587 | if ((f = RICHCOMPARE(w->ob_type)) != NULL) { |
Tim Peters | f4aca75 | 2004-09-23 02:39:37 +0000 | [diff] [blame] | 588 | return (*f)(w, v, _Py_SwappedOp[op]); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 589 | } |
| 590 | res = Py_NotImplemented; |
| 591 | Py_INCREF(res); |
| 592 | return res; |
| 593 | } |
| 594 | |
| 595 | /* Try a genuine rich comparison, returning an int. Return: |
| 596 | -1 for exception (including the case where try_rich_compare() returns an |
| 597 | object that's not a Boolean); |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 598 | 0 if the outcome is false; |
| 599 | 1 if the outcome is true; |
| 600 | 2 if this particular rich comparison is not implemented or undefined. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 601 | */ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 602 | static int |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 603 | try_rich_compare_bool(PyObject *v, PyObject *w, int op) |
| 604 | { |
| 605 | PyObject *res; |
| 606 | int ok; |
| 607 | |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 608 | if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL) |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 609 | return 2; /* Shortcut, avoid INCREF+DECREF */ |
| 610 | res = try_rich_compare(v, w, op); |
| 611 | if (res == NULL) |
| 612 | return -1; |
| 613 | if (res == Py_NotImplemented) { |
| 614 | Py_DECREF(res); |
| 615 | return 2; |
| 616 | } |
| 617 | ok = PyObject_IsTrue(res); |
| 618 | Py_DECREF(res); |
| 619 | return ok; |
| 620 | } |
| 621 | |
| 622 | /* Try rich comparisons to determine a 3-way comparison. Return: |
| 623 | -2 for an exception; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 624 | -1 if v < w; |
| 625 | 0 if v == w; |
| 626 | 1 if v > w; |
| 627 | 2 if this particular rich comparison is not implemented or undefined. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 628 | */ |
| 629 | static int |
| 630 | try_rich_to_3way_compare(PyObject *v, PyObject *w) |
| 631 | { |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 632 | static struct { int op; int outcome; } tries[3] = { |
| 633 | /* Try this operator, and if it is true, use this outcome: */ |
| 634 | {Py_EQ, 0}, |
| 635 | {Py_LT, -1}, |
| 636 | {Py_GT, 1}, |
| 637 | }; |
| 638 | int i; |
| 639 | |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 640 | if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL) |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 641 | return 2; /* Shortcut */ |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 642 | |
| 643 | for (i = 0; i < 3; i++) { |
| 644 | switch (try_rich_compare_bool(v, w, tries[i].op)) { |
| 645 | case -1: |
Tim Peters | 6d60b2e | 2001-05-07 20:53:51 +0000 | [diff] [blame] | 646 | return -2; |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 647 | case 1: |
| 648 | return tries[i].outcome; |
| 649 | } |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 650 | } |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 651 | |
| 652 | return 2; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | /* Try a 3-way comparison, returning an int. Return: |
| 656 | -2 for an exception; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 657 | -1 if v < w; |
| 658 | 0 if v == w; |
| 659 | 1 if v > w; |
| 660 | 2 if this particular 3-way comparison is not implemented or undefined. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 661 | */ |
| 662 | static int |
| 663 | try_3way_compare(PyObject *v, PyObject *w) |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 664 | { |
| 665 | int c; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 666 | cmpfunc f; |
| 667 | |
| 668 | /* Comparisons involving instances are given to instance_compare, |
| 669 | which has the same return conventions as this function. */ |
| 670 | |
Guido van Rossum | ab3b034 | 2001-09-18 20:38:53 +0000 | [diff] [blame] | 671 | f = v->ob_type->tp_compare; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 672 | if (PyInstance_Check(v)) |
Guido van Rossum | ab3b034 | 2001-09-18 20:38:53 +0000 | [diff] [blame] | 673 | return (*f)(v, w); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 674 | if (PyInstance_Check(w)) |
| 675 | return (*w->ob_type->tp_compare)(v, w); |
| 676 | |
Guido van Rossum | ab3b034 | 2001-09-18 20:38:53 +0000 | [diff] [blame] | 677 | /* If both have the same (non-NULL) tp_compare, use it. */ |
| 678 | if (f != NULL && f == w->ob_type->tp_compare) { |
| 679 | c = (*f)(v, w); |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 680 | return adjust_tp_compare(c); |
Guido van Rossum | ab3b034 | 2001-09-18 20:38:53 +0000 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | /* If either tp_compare is _PyObject_SlotCompare, that's safe. */ |
| 684 | if (f == _PyObject_SlotCompare || |
| 685 | w->ob_type->tp_compare == _PyObject_SlotCompare) |
| 686 | return _PyObject_SlotCompare(v, w); |
| 687 | |
Armin Rigo | a174813 | 2004-12-23 22:13:13 +0000 | [diff] [blame] | 688 | /* If we're here, v and w, |
| 689 | a) are not instances; |
| 690 | b) have different types or a type without tp_compare; and |
| 691 | c) don't have a user-defined tp_compare. |
| 692 | tp_compare implementations in C assume that both arguments |
| 693 | have their type, so we give up if the coercion fails or if |
| 694 | it yields types which are still incompatible (which can |
| 695 | happen with a user-defined nb_coerce). |
| 696 | */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 697 | c = PyNumber_CoerceEx(&v, &w); |
| 698 | if (c < 0) |
| 699 | return -2; |
| 700 | if (c > 0) |
| 701 | return 2; |
Armin Rigo | a174813 | 2004-12-23 22:13:13 +0000 | [diff] [blame] | 702 | f = v->ob_type->tp_compare; |
| 703 | if (f != NULL && f == w->ob_type->tp_compare) { |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 704 | c = (*f)(v, w); |
| 705 | Py_DECREF(v); |
| 706 | Py_DECREF(w); |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 707 | return adjust_tp_compare(c); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 708 | } |
| 709 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 710 | /* No comparison defined */ |
| 711 | Py_DECREF(v); |
| 712 | Py_DECREF(w); |
| 713 | return 2; |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 714 | } |
| 715 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 716 | /* Final fallback 3-way comparison, returning an int. Return: |
| 717 | -2 if an error occurred; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 718 | -1 if v < w; |
| 719 | 0 if v == w; |
| 720 | 1 if v > w. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 721 | */ |
| 722 | static int |
| 723 | default_3way_compare(PyObject *v, PyObject *w) |
| 724 | { |
| 725 | int c; |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 726 | const char *vname, *wname; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 727 | |
| 728 | if (v->ob_type == w->ob_type) { |
Barry Warsaw | b0e754d | 2001-01-20 06:24:55 +0000 | [diff] [blame] | 729 | /* When comparing these pointers, they must be cast to |
| 730 | * integer types (i.e. Py_uintptr_t, our spelling of C9X's |
| 731 | * uintptr_t). ANSI specifies that pointer compares other |
| 732 | * than == and != to non-related structures are undefined. |
| 733 | */ |
Barry Warsaw | 71ff8d5 | 2001-01-20 06:08:10 +0000 | [diff] [blame] | 734 | Py_uintptr_t vv = (Py_uintptr_t)v; |
| 735 | Py_uintptr_t ww = (Py_uintptr_t)w; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 736 | return (vv < ww) ? -1 : (vv > ww) ? 1 : 0; |
| 737 | } |
| 738 | |
Guido van Rossum | 0871e93 | 2001-01-22 19:28:09 +0000 | [diff] [blame] | 739 | /* None is smaller than anything */ |
| 740 | if (v == Py_None) |
| 741 | return -1; |
| 742 | if (w == Py_None) |
| 743 | return 1; |
| 744 | |
Guido van Rossum | fb50d3f | 2003-02-18 16:40:09 +0000 | [diff] [blame] | 745 | /* different type: compare type names; numbers are smaller */ |
| 746 | if (PyNumber_Check(v)) |
Guido van Rossum | 8f9143d | 2001-01-22 15:59:32 +0000 | [diff] [blame] | 747 | vname = ""; |
| 748 | else |
| 749 | vname = v->ob_type->tp_name; |
Guido van Rossum | fb50d3f | 2003-02-18 16:40:09 +0000 | [diff] [blame] | 750 | if (PyNumber_Check(w)) |
Guido van Rossum | 8f9143d | 2001-01-22 15:59:32 +0000 | [diff] [blame] | 751 | wname = ""; |
| 752 | else |
| 753 | wname = w->ob_type->tp_name; |
| 754 | c = strcmp(vname, wname); |
| 755 | if (c < 0) |
| 756 | return -1; |
| 757 | if (c > 0) |
| 758 | return 1; |
| 759 | /* Same type name, or (more likely) incomparable numeric types */ |
| 760 | return ((Py_uintptr_t)(v->ob_type) < ( |
| 761 | Py_uintptr_t)(w->ob_type)) ? -1 : 1; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 762 | } |
| 763 | |
Tim Peters | 6d60b2e | 2001-05-07 20:53:51 +0000 | [diff] [blame] | 764 | /* Do a 3-way comparison, by hook or by crook. Return: |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 765 | -2 for an exception (but see below); |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 766 | -1 if v < w; |
Tim Peters | 6d60b2e | 2001-05-07 20:53:51 +0000 | [diff] [blame] | 767 | 0 if v == w; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 768 | 1 if v > w; |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 769 | BUT: if the object implements a tp_compare function, it returns |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 770 | whatever this function returns (whether with an exception or not). |
Tim Peters | 6d60b2e | 2001-05-07 20:53:51 +0000 | [diff] [blame] | 771 | */ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 772 | static int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 773 | do_cmp(PyObject *v, PyObject *w) |
Guido van Rossum | 2056684 | 1995-01-12 11:26:10 +0000 | [diff] [blame] | 774 | { |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 775 | int c; |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 776 | cmpfunc f; |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 777 | |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 778 | if (v->ob_type == w->ob_type |
Guido van Rossum | 82fc51c | 2001-08-16 08:02:45 +0000 | [diff] [blame] | 779 | && (f = v->ob_type->tp_compare) != NULL) { |
| 780 | c = (*f)(v, w); |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 781 | if (PyInstance_Check(v)) { |
| 782 | /* Instance tp_compare has a different signature. |
| 783 | But if it returns undefined we fall through. */ |
| 784 | if (c != 2) |
| 785 | return c; |
Neal Norwitz | 3f8dae7 | 2002-05-31 20:23:33 +0000 | [diff] [blame] | 786 | /* Else fall through to try_rich_to_3way_compare() */ |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 787 | } |
| 788 | else |
| 789 | return adjust_tp_compare(c); |
Guido van Rossum | 82fc51c | 2001-08-16 08:02:45 +0000 | [diff] [blame] | 790 | } |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 791 | /* We only get here if one of the following is true: |
| 792 | a) v and w have different types |
| 793 | b) v and w have the same type, which doesn't have tp_compare |
| 794 | c) v and w are instances, and either __cmp__ is not defined or |
| 795 | __cmp__ returns NotImplemented |
| 796 | */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 797 | c = try_rich_to_3way_compare(v, w); |
| 798 | if (c < 2) |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 799 | return c; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 800 | c = try_3way_compare(v, w); |
| 801 | if (c < 2) |
| 802 | return c; |
| 803 | return default_3way_compare(v, w); |
Guido van Rossum | 2056684 | 1995-01-12 11:26:10 +0000 | [diff] [blame] | 804 | } |
| 805 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 806 | /* Compare v to w. Return |
| 807 | -1 if v < w or exception (PyErr_Occurred() true in latter case). |
| 808 | 0 if v == w. |
| 809 | 1 if v > w. |
| 810 | XXX The docs (C API manual) say the return value is undefined in case |
| 811 | XXX of error. |
| 812 | */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 813 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 814 | PyObject_Compare(PyObject *v, PyObject *w) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 815 | { |
Jeremy Hylton | 4a3dd2d | 2000-04-14 19:13:24 +0000 | [diff] [blame] | 816 | int result; |
| 817 | |
Guido van Rossum | c8b6df9 | 1997-05-23 00:06:51 +0000 | [diff] [blame] | 818 | if (v == NULL || w == NULL) { |
| 819 | PyErr_BadInternalCall(); |
| 820 | return -1; |
| 821 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 822 | if (v == w) |
| 823 | return 0; |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 824 | if (Py_EnterRecursiveCall(" in cmp")) |
| 825 | return -1; |
| 826 | result = do_cmp(v, w); |
| 827 | Py_LeaveRecursiveCall(); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 828 | return result < 0 ? -1 : result; |
| 829 | } |
| 830 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 831 | /* Return (new reference to) Py_True or Py_False. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 832 | static PyObject * |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 833 | convert_3way_to_object(int op, int c) |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 834 | { |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 835 | PyObject *result; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 836 | switch (op) { |
| 837 | case Py_LT: c = c < 0; break; |
| 838 | case Py_LE: c = c <= 0; break; |
| 839 | case Py_EQ: c = c == 0; break; |
| 840 | case Py_NE: c = c != 0; break; |
| 841 | case Py_GT: c = c > 0; break; |
| 842 | case Py_GE: c = c >= 0; break; |
| 843 | } |
| 844 | result = c ? Py_True : Py_False; |
| 845 | Py_INCREF(result); |
Jeremy Hylton | 4a3dd2d | 2000-04-14 19:13:24 +0000 | [diff] [blame] | 846 | return result; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 847 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 848 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 849 | /* We want a rich comparison but don't have one. Try a 3-way cmp instead. |
| 850 | Return |
| 851 | NULL if error |
| 852 | Py_True if v op w |
| 853 | Py_False if not (v op w) |
| 854 | */ |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 855 | static PyObject * |
| 856 | try_3way_to_rich_compare(PyObject *v, PyObject *w, int op) |
| 857 | { |
| 858 | int c; |
| 859 | |
| 860 | c = try_3way_compare(v, w); |
| 861 | if (c >= 2) |
| 862 | c = default_3way_compare(v, w); |
| 863 | if (c <= -2) |
| 864 | return NULL; |
| 865 | return convert_3way_to_object(op, c); |
| 866 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 867 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 868 | /* Do rich comparison on v and w. Return |
| 869 | NULL if error |
| 870 | Else a new reference to an object other than Py_NotImplemented, usually(?): |
| 871 | Py_True if v op w |
| 872 | Py_False if not (v op w) |
| 873 | */ |
Neil Schemenauer | d38855c | 2001-01-21 16:25:18 +0000 | [diff] [blame] | 874 | static PyObject * |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 875 | do_richcmp(PyObject *v, PyObject *w, int op) |
| 876 | { |
| 877 | PyObject *res; |
| 878 | |
| 879 | res = try_rich_compare(v, w, op); |
| 880 | if (res != Py_NotImplemented) |
| 881 | return res; |
| 882 | Py_DECREF(res); |
| 883 | |
| 884 | return try_3way_to_rich_compare(v, w, op); |
| 885 | } |
| 886 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 887 | /* Return: |
| 888 | NULL for exception; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 889 | some object not equal to NotImplemented if it is implemented |
| 890 | (this latter object may not be a Boolean). |
| 891 | */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 892 | PyObject * |
| 893 | PyObject_RichCompare(PyObject *v, PyObject *w, int op) |
| 894 | { |
| 895 | PyObject *res; |
| 896 | |
| 897 | assert(Py_LT <= op && op <= Py_GE); |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 898 | if (Py_EnterRecursiveCall(" in cmp")) |
| 899 | return NULL; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 900 | |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 901 | /* If the types are equal, and not old-style instances, try to |
Tim Peters | 67754e9 | 2001-11-04 07:29:31 +0000 | [diff] [blame] | 902 | get out cheap (don't bother with coercions etc.). */ |
| 903 | if (v->ob_type == w->ob_type && !PyInstance_Check(v)) { |
| 904 | cmpfunc fcmp; |
| 905 | richcmpfunc frich = RICHCOMPARE(v->ob_type); |
| 906 | /* If the type has richcmp, try it first. try_rich_compare |
| 907 | tries it two-sided, which is not needed since we've a |
| 908 | single type only. */ |
| 909 | if (frich != NULL) { |
| 910 | res = (*frich)(v, w, op); |
| 911 | if (res != Py_NotImplemented) |
| 912 | goto Done; |
| 913 | Py_DECREF(res); |
| 914 | } |
| 915 | /* No richcmp, or this particular richmp not implemented. |
| 916 | Try 3-way cmp. */ |
| 917 | fcmp = v->ob_type->tp_compare; |
| 918 | if (fcmp != NULL) { |
| 919 | int c = (*fcmp)(v, w); |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 920 | c = adjust_tp_compare(c); |
| 921 | if (c == -2) { |
Tim Peters | 67754e9 | 2001-11-04 07:29:31 +0000 | [diff] [blame] | 922 | res = NULL; |
| 923 | goto Done; |
| 924 | } |
| 925 | res = convert_3way_to_object(op, c); |
| 926 | goto Done; |
| 927 | } |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 928 | } |
Tim Peters | 67754e9 | 2001-11-04 07:29:31 +0000 | [diff] [blame] | 929 | |
| 930 | /* Fast path not taken, or couldn't deliver a useful result. */ |
| 931 | res = do_richcmp(v, w, op); |
| 932 | Done: |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 933 | Py_LeaveRecursiveCall(); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 934 | return res; |
| 935 | } |
| 936 | |
Tim Peters | de9725f | 2001-05-05 10:06:17 +0000 | [diff] [blame] | 937 | /* Return -1 if error; 1 if v op w; 0 if not (v op w). */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 938 | int |
| 939 | PyObject_RichCompareBool(PyObject *v, PyObject *w, int op) |
| 940 | { |
Raymond Hettinger | 93d4481 | 2004-03-21 17:01:44 +0000 | [diff] [blame] | 941 | PyObject *res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 942 | int ok; |
| 943 | |
Raymond Hettinger | 93d4481 | 2004-03-21 17:01:44 +0000 | [diff] [blame] | 944 | /* Quick result when objects are the same. |
| 945 | Guarantees that identity implies equality. */ |
| 946 | if (v == w) { |
| 947 | if (op == Py_EQ) |
| 948 | return 1; |
| 949 | else if (op == Py_NE) |
| 950 | return 0; |
| 951 | } |
| 952 | |
| 953 | res = PyObject_RichCompare(v, w, op); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 954 | if (res == NULL) |
| 955 | return -1; |
Guido van Rossum | 81912d4 | 2002-08-24 05:33:28 +0000 | [diff] [blame] | 956 | if (PyBool_Check(res)) |
| 957 | ok = (res == Py_True); |
| 958 | else |
| 959 | ok = PyObject_IsTrue(res); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 960 | Py_DECREF(res); |
| 961 | return ok; |
| 962 | } |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 963 | |
| 964 | /* Set of hash utility functions to help maintaining the invariant that |
Raymond Hettinger | 8183fa4 | 2004-03-21 17:35:06 +0000 | [diff] [blame] | 965 | if a==b then hash(a)==hash(b) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 966 | |
| 967 | All the utility functions (_Py_Hash*()) return "-1" to signify an error. |
| 968 | */ |
| 969 | |
| 970 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 971 | _Py_HashDouble(double v) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 972 | { |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 973 | double intpart, fractpart; |
| 974 | int expo; |
| 975 | long hipart; |
| 976 | long x; /* the final hash value */ |
| 977 | /* This is designed so that Python numbers of different types |
| 978 | * that compare equal hash to the same value; otherwise comparisons |
| 979 | * of mapping keys will turn out weird. |
| 980 | */ |
| 981 | |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 982 | fractpart = modf(v, &intpart); |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 983 | if (fractpart == 0.0) { |
| 984 | /* This must return the same hash as an equal int or long. */ |
| 985 | if (intpart > LONG_MAX || -intpart > LONG_MAX) { |
| 986 | /* Convert to long and use its hash. */ |
| 987 | PyObject *plong; /* converted to Python long */ |
| 988 | if (Py_IS_INFINITY(intpart)) |
| 989 | /* can't convert to long int -- arbitrary */ |
| 990 | v = v < 0 ? -271828.0 : 314159.0; |
| 991 | plong = PyLong_FromDouble(v); |
| 992 | if (plong == NULL) |
| 993 | return -1; |
| 994 | x = PyObject_Hash(plong); |
| 995 | Py_DECREF(plong); |
| 996 | return x; |
| 997 | } |
| 998 | /* Fits in a C long == a Python int, so is its own hash. */ |
| 999 | x = (long)intpart; |
| 1000 | if (x == -1) |
| 1001 | x = -2; |
| 1002 | return x; |
| 1003 | } |
| 1004 | /* The fractional part is non-zero, so we don't have to worry about |
| 1005 | * making this match the hash of some other type. |
| 1006 | * Use frexp to get at the bits in the double. |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1007 | * Since the VAX D double format has 56 mantissa bits, which is the |
| 1008 | * most of any double format in use, each of these parts may have as |
| 1009 | * many as (but no more than) 56 significant bits. |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 1010 | * So, assuming sizeof(long) >= 4, each part can be broken into two |
| 1011 | * longs; frexp and multiplication are used to do that. |
| 1012 | * Also, since the Cray double format has 15 exponent bits, which is |
| 1013 | * the most of any double format in use, shifting the exponent field |
| 1014 | * left by 15 won't overflow a long (again assuming sizeof(long) >= 4). |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1015 | */ |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 1016 | v = frexp(v, &expo); |
| 1017 | v *= 2147483648.0; /* 2**31 */ |
| 1018 | hipart = (long)v; /* take the top 32 bits */ |
| 1019 | v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */ |
| 1020 | x = hipart + (long)v + (expo << 15); |
| 1021 | if (x == -1) |
| 1022 | x = -2; |
| 1023 | return x; |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1027 | _Py_HashPointer(void *p) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1028 | { |
| 1029 | #if SIZEOF_LONG >= SIZEOF_VOID_P |
| 1030 | return (long)p; |
| 1031 | #else |
| 1032 | /* convert to a Python long and hash that */ |
| 1033 | PyObject* longobj; |
| 1034 | long x; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1035 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1036 | if ((longobj = PyLong_FromVoidPtr(p)) == NULL) { |
| 1037 | x = -1; |
| 1038 | goto finally; |
| 1039 | } |
| 1040 | x = PyObject_Hash(longobj); |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1041 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1042 | finally: |
| 1043 | Py_XDECREF(longobj); |
| 1044 | return x; |
| 1045 | #endif |
| 1046 | } |
| 1047 | |
| 1048 | |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1049 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1050 | PyObject_Hash(PyObject *v) |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1051 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1052 | PyTypeObject *tp = v->ob_type; |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1053 | if (tp->tp_hash != NULL) |
| 1054 | return (*tp->tp_hash)(v); |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 1055 | if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) { |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1056 | return _Py_HashPointer(v); /* Use address as hash value */ |
| 1057 | } |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1058 | /* If there's a cmp but no hash defined, the object can't be hashed */ |
Georg Brandl | ccff785 | 2006-06-18 22:17:29 +0000 | [diff] [blame] | 1059 | PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'", |
| 1060 | v->ob_type->tp_name); |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1061 | return -1; |
| 1062 | } |
| 1063 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1064 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1065 | PyObject_GetAttrString(PyObject *v, const char *name) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1066 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1067 | PyObject *w, *res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 1068 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1069 | if (v->ob_type->tp_getattr != NULL) |
Martin v. Löwis | 15e6274 | 2006-02-27 16:46:16 +0000 | [diff] [blame] | 1070 | return (*v->ob_type->tp_getattr)(v, (char*)name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1071 | w = PyString_InternFromString(name); |
| 1072 | if (w == NULL) |
| 1073 | return NULL; |
| 1074 | res = PyObject_GetAttr(v, w); |
| 1075 | Py_XDECREF(w); |
| 1076 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1080 | PyObject_HasAttrString(PyObject *v, const char *name) |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 1081 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1082 | PyObject *res = PyObject_GetAttrString(v, name); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 1083 | if (res != NULL) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1084 | Py_DECREF(res); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 1085 | return 1; |
| 1086 | } |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1087 | PyErr_Clear(); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 1088 | return 0; |
| 1089 | } |
| 1090 | |
| 1091 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1092 | PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1093 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1094 | PyObject *s; |
| 1095 | int res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 1096 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1097 | if (v->ob_type->tp_setattr != NULL) |
Martin v. Löwis | 15e6274 | 2006-02-27 16:46:16 +0000 | [diff] [blame] | 1098 | return (*v->ob_type->tp_setattr)(v, (char*)name, w); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1099 | s = PyString_InternFromString(name); |
| 1100 | if (s == NULL) |
| 1101 | return -1; |
| 1102 | res = PyObject_SetAttr(v, s, w); |
| 1103 | Py_XDECREF(s); |
| 1104 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1105 | } |
| 1106 | |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1107 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1108 | PyObject_GetAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1109 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1110 | PyTypeObject *tp = v->ob_type; |
| 1111 | |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 1112 | if (!PyString_Check(name)) { |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1113 | #ifdef Py_USING_UNICODE |
| 1114 | /* The Unicode to string conversion is done here because the |
| 1115 | existing tp_getattro slots expect a string object as name |
| 1116 | and we wouldn't want to break those. */ |
| 1117 | if (PyUnicode_Check(name)) { |
| 1118 | name = _PyUnicode_AsDefaultEncodedString(name, NULL); |
| 1119 | if (name == NULL) |
| 1120 | return NULL; |
| 1121 | } |
| 1122 | else |
| 1123 | #endif |
| 1124 | { |
Georg Brandl | ccff785 | 2006-06-18 22:17:29 +0000 | [diff] [blame] | 1125 | PyErr_Format(PyExc_TypeError, |
| 1126 | "attribute name must be string, not '%.200s'", |
| 1127 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1128 | return NULL; |
| 1129 | } |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 1130 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1131 | if (tp->tp_getattro != NULL) |
| 1132 | return (*tp->tp_getattro)(v, name); |
| 1133 | if (tp->tp_getattr != NULL) |
| 1134 | return (*tp->tp_getattr)(v, PyString_AS_STRING(name)); |
| 1135 | PyErr_Format(PyExc_AttributeError, |
| 1136 | "'%.50s' object has no attribute '%.400s'", |
| 1137 | tp->tp_name, PyString_AS_STRING(name)); |
| 1138 | return NULL; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1142 | PyObject_HasAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1143 | { |
| 1144 | PyObject *res = PyObject_GetAttr(v, name); |
| 1145 | if (res != NULL) { |
| 1146 | Py_DECREF(res); |
| 1147 | return 1; |
| 1148 | } |
| 1149 | PyErr_Clear(); |
| 1150 | return 0; |
| 1151 | } |
| 1152 | |
| 1153 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1154 | PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1155 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1156 | PyTypeObject *tp = v->ob_type; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1157 | int err; |
Marc-André Lemburg | e44e507 | 2000-09-18 16:20:57 +0000 | [diff] [blame] | 1158 | |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1159 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1160 | #ifdef Py_USING_UNICODE |
| 1161 | /* The Unicode to string conversion is done here because the |
| 1162 | existing tp_setattro slots expect a string object as name |
| 1163 | and we wouldn't want to break those. */ |
| 1164 | if (PyUnicode_Check(name)) { |
| 1165 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1166 | if (name == NULL) |
| 1167 | return -1; |
| 1168 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1169 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1170 | #endif |
| 1171 | { |
Georg Brandl | ccff785 | 2006-06-18 22:17:29 +0000 | [diff] [blame] | 1172 | PyErr_Format(PyExc_TypeError, |
| 1173 | "attribute name must be string, not '%.200s'", |
| 1174 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1175 | return -1; |
| 1176 | } |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 1177 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1178 | else |
| 1179 | Py_INCREF(name); |
| 1180 | |
| 1181 | PyString_InternInPlace(&name); |
| 1182 | if (tp->tp_setattro != NULL) { |
| 1183 | err = (*tp->tp_setattro)(v, name, value); |
| 1184 | Py_DECREF(name); |
| 1185 | return err; |
Marc-André Lemburg | e44e507 | 2000-09-18 16:20:57 +0000 | [diff] [blame] | 1186 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1187 | if (tp->tp_setattr != NULL) { |
| 1188 | err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value); |
| 1189 | Py_DECREF(name); |
| 1190 | return err; |
| 1191 | } |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1192 | Py_DECREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1193 | if (tp->tp_getattr == NULL && tp->tp_getattro == NULL) |
| 1194 | PyErr_Format(PyExc_TypeError, |
| 1195 | "'%.100s' object has no attributes " |
| 1196 | "(%s .%.100s)", |
| 1197 | tp->tp_name, |
| 1198 | value==NULL ? "del" : "assign to", |
| 1199 | PyString_AS_STRING(name)); |
| 1200 | else |
| 1201 | PyErr_Format(PyExc_TypeError, |
| 1202 | "'%.100s' object has only read-only attributes " |
| 1203 | "(%s .%.100s)", |
| 1204 | tp->tp_name, |
| 1205 | value==NULL ? "del" : "assign to", |
| 1206 | PyString_AS_STRING(name)); |
| 1207 | return -1; |
| 1208 | } |
| 1209 | |
| 1210 | /* Helper to get a pointer to an object's __dict__ slot, if any */ |
| 1211 | |
| 1212 | PyObject ** |
| 1213 | _PyObject_GetDictPtr(PyObject *obj) |
| 1214 | { |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 1215 | Py_ssize_t dictoffset; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1216 | PyTypeObject *tp = obj->ob_type; |
| 1217 | |
| 1218 | if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS)) |
| 1219 | return NULL; |
| 1220 | dictoffset = tp->tp_dictoffset; |
| 1221 | if (dictoffset == 0) |
| 1222 | return NULL; |
| 1223 | if (dictoffset < 0) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1224 | Py_ssize_t tsize; |
Guido van Rossum | 2eb0b87 | 2002-03-01 22:24:49 +0000 | [diff] [blame] | 1225 | size_t size; |
| 1226 | |
| 1227 | tsize = ((PyVarObject *)obj)->ob_size; |
| 1228 | if (tsize < 0) |
| 1229 | tsize = -tsize; |
| 1230 | size = _PyObject_VAR_SIZE(tp, tsize); |
| 1231 | |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 1232 | dictoffset += (long)size; |
| 1233 | assert(dictoffset > 0); |
| 1234 | assert(dictoffset % SIZEOF_VOID_P == 0); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1235 | } |
| 1236 | return (PyObject **) ((char *)obj + dictoffset); |
| 1237 | } |
| 1238 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1239 | PyObject * |
Raymond Hettinger | 1da1dbf | 2003-03-17 19:46:11 +0000 | [diff] [blame] | 1240 | PyObject_SelfIter(PyObject *obj) |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 1241 | { |
| 1242 | Py_INCREF(obj); |
| 1243 | return obj; |
| 1244 | } |
| 1245 | |
Michael W. Hudson | 1593f50 | 2004-09-14 17:09:47 +0000 | [diff] [blame] | 1246 | /* Generic GetAttr functions - put these in your tp_[gs]etattro slot */ |
| 1247 | |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 1248 | PyObject * |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1249 | PyObject_GenericGetAttr(PyObject *obj, PyObject *name) |
| 1250 | { |
| 1251 | PyTypeObject *tp = obj->ob_type; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1252 | PyObject *descr = NULL; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1253 | PyObject *res = NULL; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1254 | descrgetfunc f; |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 1255 | Py_ssize_t dictoffset; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1256 | PyObject **dictptr; |
| 1257 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1258 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1259 | #ifdef Py_USING_UNICODE |
| 1260 | /* The Unicode to string conversion is done here because the |
| 1261 | existing tp_setattro slots expect a string object as name |
| 1262 | and we wouldn't want to break those. */ |
| 1263 | if (PyUnicode_Check(name)) { |
| 1264 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1265 | if (name == NULL) |
| 1266 | return NULL; |
| 1267 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1268 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1269 | #endif |
| 1270 | { |
Georg Brandl | ccff785 | 2006-06-18 22:17:29 +0000 | [diff] [blame] | 1271 | PyErr_Format(PyExc_TypeError, |
| 1272 | "attribute name must be string, not '%.200s'", |
| 1273 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1274 | return NULL; |
| 1275 | } |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1276 | } |
| 1277 | else |
| 1278 | Py_INCREF(name); |
| 1279 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1280 | if (tp->tp_dict == NULL) { |
Guido van Rossum | 528b7eb | 2001-08-07 17:24:28 +0000 | [diff] [blame] | 1281 | if (PyType_Ready(tp) < 0) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1282 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1283 | } |
| 1284 | |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1285 | /* Inline _PyType_Lookup */ |
| 1286 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1287 | Py_ssize_t i, n; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1288 | PyObject *mro, *base, *dict; |
| 1289 | |
| 1290 | /* Look in tp_dict of types in MRO */ |
| 1291 | mro = tp->tp_mro; |
| 1292 | assert(mro != NULL); |
| 1293 | assert(PyTuple_Check(mro)); |
| 1294 | n = PyTuple_GET_SIZE(mro); |
| 1295 | for (i = 0; i < n; i++) { |
| 1296 | base = PyTuple_GET_ITEM(mro, i); |
| 1297 | if (PyClass_Check(base)) |
| 1298 | dict = ((PyClassObject *)base)->cl_dict; |
| 1299 | else { |
| 1300 | assert(PyType_Check(base)); |
| 1301 | dict = ((PyTypeObject *)base)->tp_dict; |
| 1302 | } |
| 1303 | assert(dict && PyDict_Check(dict)); |
| 1304 | descr = PyDict_GetItem(dict, name); |
| 1305 | if (descr != NULL) |
| 1306 | break; |
| 1307 | } |
| 1308 | } |
| 1309 | |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1310 | Py_XINCREF(descr); |
| 1311 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1312 | f = NULL; |
Guido van Rossum | 90195e2 | 2003-02-19 03:19:29 +0000 | [diff] [blame] | 1313 | if (descr != NULL && |
| 1314 | PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1315 | f = descr->ob_type->tp_descr_get; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1316 | if (f != NULL && PyDescr_IsData(descr)) { |
| 1317 | res = f(descr, obj, (PyObject *)obj->ob_type); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1318 | Py_DECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1319 | goto done; |
| 1320 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1321 | } |
| 1322 | |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 1323 | /* Inline _PyObject_GetDictPtr */ |
| 1324 | dictoffset = tp->tp_dictoffset; |
| 1325 | if (dictoffset != 0) { |
| 1326 | PyObject *dict; |
| 1327 | if (dictoffset < 0) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1328 | Py_ssize_t tsize; |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 1329 | size_t size; |
| 1330 | |
| 1331 | tsize = ((PyVarObject *)obj)->ob_size; |
| 1332 | if (tsize < 0) |
| 1333 | tsize = -tsize; |
| 1334 | size = _PyObject_VAR_SIZE(tp, tsize); |
| 1335 | |
| 1336 | dictoffset += (long)size; |
| 1337 | assert(dictoffset > 0); |
| 1338 | assert(dictoffset % SIZEOF_VOID_P == 0); |
| 1339 | } |
| 1340 | dictptr = (PyObject **) ((char *)obj + dictoffset); |
| 1341 | dict = *dictptr; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1342 | if (dict != NULL) { |
Guido van Rossum | 1859f5b | 2008-01-24 17:59:56 +0000 | [diff] [blame] | 1343 | Py_INCREF(dict); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1344 | res = PyDict_GetItem(dict, name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1345 | if (res != NULL) { |
| 1346 | Py_INCREF(res); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1347 | Py_XDECREF(descr); |
Guido van Rossum | 1859f5b | 2008-01-24 17:59:56 +0000 | [diff] [blame] | 1348 | Py_DECREF(dict); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1349 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1350 | } |
Guido van Rossum | 1859f5b | 2008-01-24 17:59:56 +0000 | [diff] [blame] | 1351 | Py_DECREF(dict); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1352 | } |
| 1353 | } |
| 1354 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1355 | if (f != NULL) { |
| 1356 | res = f(descr, obj, (PyObject *)obj->ob_type); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1357 | Py_DECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1358 | goto done; |
| 1359 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1360 | |
| 1361 | if (descr != NULL) { |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1362 | res = descr; |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1363 | /* descr was already increfed above */ |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1364 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1365 | } |
| 1366 | |
| 1367 | PyErr_Format(PyExc_AttributeError, |
| 1368 | "'%.50s' object has no attribute '%.400s'", |
| 1369 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1370 | done: |
| 1371 | Py_DECREF(name); |
| 1372 | return res; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1373 | } |
| 1374 | |
| 1375 | int |
| 1376 | PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value) |
| 1377 | { |
| 1378 | PyTypeObject *tp = obj->ob_type; |
| 1379 | PyObject *descr; |
| 1380 | descrsetfunc f; |
| 1381 | PyObject **dictptr; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1382 | int res = -1; |
| 1383 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1384 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1385 | #ifdef Py_USING_UNICODE |
| 1386 | /* The Unicode to string conversion is done here because the |
| 1387 | existing tp_setattro slots expect a string object as name |
| 1388 | and we wouldn't want to break those. */ |
| 1389 | if (PyUnicode_Check(name)) { |
| 1390 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1391 | if (name == NULL) |
| 1392 | return -1; |
| 1393 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1394 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1395 | #endif |
| 1396 | { |
Georg Brandl | ccff785 | 2006-06-18 22:17:29 +0000 | [diff] [blame] | 1397 | PyErr_Format(PyExc_TypeError, |
| 1398 | "attribute name must be string, not '%.200s'", |
| 1399 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1400 | return -1; |
| 1401 | } |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1402 | } |
| 1403 | else |
| 1404 | Py_INCREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1405 | |
| 1406 | if (tp->tp_dict == NULL) { |
Guido van Rossum | 528b7eb | 2001-08-07 17:24:28 +0000 | [diff] [blame] | 1407 | if (PyType_Ready(tp) < 0) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1408 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1409 | } |
| 1410 | |
| 1411 | descr = _PyType_Lookup(tp, name); |
| 1412 | f = NULL; |
Guido van Rossum | 90195e2 | 2003-02-19 03:19:29 +0000 | [diff] [blame] | 1413 | if (descr != NULL && |
| 1414 | PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1415 | f = descr->ob_type->tp_descr_set; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1416 | if (f != NULL && PyDescr_IsData(descr)) { |
| 1417 | res = f(descr, obj, value); |
| 1418 | goto done; |
| 1419 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
| 1422 | dictptr = _PyObject_GetDictPtr(obj); |
| 1423 | if (dictptr != NULL) { |
| 1424 | PyObject *dict = *dictptr; |
| 1425 | if (dict == NULL && value != NULL) { |
| 1426 | dict = PyDict_New(); |
| 1427 | if (dict == NULL) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1428 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1429 | *dictptr = dict; |
| 1430 | } |
| 1431 | if (dict != NULL) { |
Guido van Rossum | 1859f5b | 2008-01-24 17:59:56 +0000 | [diff] [blame] | 1432 | Py_INCREF(dict); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1433 | if (value == NULL) |
| 1434 | res = PyDict_DelItem(dict, name); |
| 1435 | else |
| 1436 | res = PyDict_SetItem(dict, name, value); |
| 1437 | if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) |
| 1438 | PyErr_SetObject(PyExc_AttributeError, name); |
Guido van Rossum | 1859f5b | 2008-01-24 17:59:56 +0000 | [diff] [blame] | 1439 | Py_DECREF(dict); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1440 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1441 | } |
| 1442 | } |
| 1443 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1444 | if (f != NULL) { |
| 1445 | res = f(descr, obj, value); |
| 1446 | goto done; |
| 1447 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1448 | |
| 1449 | if (descr == NULL) { |
| 1450 | PyErr_Format(PyExc_AttributeError, |
Georg Brandl | ccff785 | 2006-06-18 22:17:29 +0000 | [diff] [blame] | 1451 | "'%.100s' object has no attribute '%.200s'", |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1452 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1453 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1454 | } |
| 1455 | |
| 1456 | PyErr_Format(PyExc_AttributeError, |
| 1457 | "'%.50s' object attribute '%.400s' is read-only", |
| 1458 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1459 | done: |
| 1460 | Py_DECREF(name); |
| 1461 | return res; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1462 | } |
| 1463 | |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1464 | /* Test a value used as condition, e.g., in a for or if statement. |
| 1465 | Return -1 if an error occurred */ |
| 1466 | |
| 1467 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1468 | PyObject_IsTrue(PyObject *v) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1469 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1470 | Py_ssize_t res; |
Guido van Rossum | 6248f44 | 2002-08-24 06:31:34 +0000 | [diff] [blame] | 1471 | if (v == Py_True) |
| 1472 | return 1; |
| 1473 | if (v == Py_False) |
| 1474 | return 0; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1475 | if (v == Py_None) |
Neal Norwitz | 51290d3 | 2002-06-13 21:32:44 +0000 | [diff] [blame] | 1476 | return 0; |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1477 | else if (v->ob_type->tp_as_number != NULL && |
| 1478 | v->ob_type->tp_as_number->nb_nonzero != NULL) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1479 | res = (*v->ob_type->tp_as_number->nb_nonzero)(v); |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1480 | else if (v->ob_type->tp_as_mapping != NULL && |
| 1481 | v->ob_type->tp_as_mapping->mp_length != NULL) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1482 | res = (*v->ob_type->tp_as_mapping->mp_length)(v); |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1483 | else if (v->ob_type->tp_as_sequence != NULL && |
| 1484 | v->ob_type->tp_as_sequence->sq_length != NULL) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1485 | res = (*v->ob_type->tp_as_sequence->sq_length)(v); |
| 1486 | else |
Neal Norwitz | 51290d3 | 2002-06-13 21:32:44 +0000 | [diff] [blame] | 1487 | return 1; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1488 | /* if it is negative, it should be either -1 or -2 */ |
| 1489 | return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int); |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1490 | } |
| 1491 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1492 | /* equivalent of 'not v' |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1493 | Return -1 if an error occurred */ |
| 1494 | |
| 1495 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1496 | PyObject_Not(PyObject *v) |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1497 | { |
| 1498 | int res; |
| 1499 | res = PyObject_IsTrue(v); |
| 1500 | if (res < 0) |
| 1501 | return res; |
| 1502 | return res == 0; |
| 1503 | } |
| 1504 | |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1505 | /* Coerce two numeric types to the "larger" one. |
| 1506 | Increment the reference count on each argument. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 1507 | Return value: |
| 1508 | -1 if an error occurred; |
| 1509 | 0 if the coercion succeeded (and then the reference counts are increased); |
| 1510 | 1 if no coercion is possible (and no error is raised). |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1511 | */ |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1512 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1513 | PyNumber_CoerceEx(PyObject **pv, PyObject **pw) |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1514 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1515 | register PyObject *v = *pv; |
| 1516 | register PyObject *w = *pw; |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1517 | int res; |
| 1518 | |
Guido van Rossum | 517c7d4 | 2002-04-26 02:49:14 +0000 | [diff] [blame] | 1519 | /* Shortcut only for old-style types */ |
| 1520 | if (v->ob_type == w->ob_type && |
| 1521 | !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES)) |
| 1522 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1523 | Py_INCREF(v); |
| 1524 | Py_INCREF(w); |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1525 | return 0; |
| 1526 | } |
| 1527 | if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) { |
| 1528 | res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw); |
| 1529 | if (res <= 0) |
| 1530 | return res; |
| 1531 | } |
| 1532 | if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) { |
| 1533 | res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv); |
| 1534 | if (res <= 0) |
| 1535 | return res; |
| 1536 | } |
Guido van Rossum | 242c642 | 1997-11-19 16:03:17 +0000 | [diff] [blame] | 1537 | return 1; |
| 1538 | } |
| 1539 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 1540 | /* Coerce two numeric types to the "larger" one. |
| 1541 | Increment the reference count on each argument. |
| 1542 | Return -1 and raise an exception if no coercion is possible |
| 1543 | (and then no reference count is incremented). |
| 1544 | */ |
Guido van Rossum | 242c642 | 1997-11-19 16:03:17 +0000 | [diff] [blame] | 1545 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1546 | PyNumber_Coerce(PyObject **pv, PyObject **pw) |
Guido van Rossum | 242c642 | 1997-11-19 16:03:17 +0000 | [diff] [blame] | 1547 | { |
| 1548 | int err = PyNumber_CoerceEx(pv, pw); |
| 1549 | if (err <= 0) |
| 1550 | return err; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1551 | PyErr_SetString(PyExc_TypeError, "number coercion failed"); |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1552 | return -1; |
| 1553 | } |
| 1554 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1555 | |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1556 | /* Test whether an object can be called */ |
| 1557 | |
| 1558 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1559 | PyCallable_Check(PyObject *x) |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1560 | { |
| 1561 | if (x == NULL) |
| 1562 | return 0; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1563 | if (PyInstance_Check(x)) { |
| 1564 | PyObject *call = PyObject_GetAttrString(x, "__call__"); |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1565 | if (call == NULL) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1566 | PyErr_Clear(); |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1567 | return 0; |
| 1568 | } |
| 1569 | /* Could test recursively but don't, for fear of endless |
| 1570 | recursion if some joker sets self.__call__ = self */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1571 | Py_DECREF(call); |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1572 | return 1; |
| 1573 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1574 | else { |
| 1575 | return x->ob_type->tp_call != NULL; |
| 1576 | } |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1577 | } |
| 1578 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1579 | /* Helper for PyObject_Dir. |
| 1580 | Merge the __dict__ of aclass into dict, and recursively also all |
| 1581 | the __dict__s of aclass's base classes. The order of merging isn't |
| 1582 | defined, as it's expected that only the final set of dict keys is |
| 1583 | interesting. |
| 1584 | Return 0 on success, -1 on error. |
| 1585 | */ |
| 1586 | |
| 1587 | static int |
| 1588 | merge_class_dict(PyObject* dict, PyObject* aclass) |
| 1589 | { |
| 1590 | PyObject *classdict; |
| 1591 | PyObject *bases; |
| 1592 | |
| 1593 | assert(PyDict_Check(dict)); |
| 1594 | assert(aclass); |
| 1595 | |
| 1596 | /* Merge in the type's dict (if any). */ |
| 1597 | classdict = PyObject_GetAttrString(aclass, "__dict__"); |
| 1598 | if (classdict == NULL) |
| 1599 | PyErr_Clear(); |
| 1600 | else { |
| 1601 | int status = PyDict_Update(dict, classdict); |
| 1602 | Py_DECREF(classdict); |
| 1603 | if (status < 0) |
| 1604 | return -1; |
| 1605 | } |
| 1606 | |
| 1607 | /* Recursively merge in the base types' (if any) dicts. */ |
| 1608 | bases = PyObject_GetAttrString(aclass, "__bases__"); |
Tim Peters | bc7e863 | 2001-09-16 20:33:22 +0000 | [diff] [blame] | 1609 | if (bases == NULL) |
| 1610 | PyErr_Clear(); |
| 1611 | else { |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1612 | /* We have no guarantee that bases is a real tuple */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1613 | Py_ssize_t i, n; |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1614 | n = PySequence_Size(bases); /* This better be right */ |
| 1615 | if (n < 0) |
| 1616 | PyErr_Clear(); |
| 1617 | else { |
| 1618 | for (i = 0; i < n; i++) { |
Tim Peters | 18e7083 | 2003-02-05 19:35:19 +0000 | [diff] [blame] | 1619 | int status; |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1620 | PyObject *base = PySequence_GetItem(bases, i); |
| 1621 | if (base == NULL) { |
| 1622 | Py_DECREF(bases); |
| 1623 | return -1; |
| 1624 | } |
Tim Peters | 18e7083 | 2003-02-05 19:35:19 +0000 | [diff] [blame] | 1625 | status = merge_class_dict(dict, base); |
| 1626 | Py_DECREF(base); |
| 1627 | if (status < 0) { |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1628 | Py_DECREF(bases); |
| 1629 | return -1; |
| 1630 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1631 | } |
| 1632 | } |
| 1633 | Py_DECREF(bases); |
| 1634 | } |
| 1635 | return 0; |
| 1636 | } |
| 1637 | |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1638 | /* Helper for PyObject_Dir. |
| 1639 | If obj has an attr named attrname that's a list, merge its string |
| 1640 | elements into keys of dict. |
| 1641 | Return 0 on success, -1 on error. Errors due to not finding the attr, |
| 1642 | or the attr not being a list, are suppressed. |
| 1643 | */ |
| 1644 | |
| 1645 | static int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1646 | merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname) |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1647 | { |
| 1648 | PyObject *list; |
| 1649 | int result = 0; |
| 1650 | |
| 1651 | assert(PyDict_Check(dict)); |
| 1652 | assert(obj); |
| 1653 | assert(attrname); |
| 1654 | |
| 1655 | list = PyObject_GetAttrString(obj, attrname); |
| 1656 | if (list == NULL) |
| 1657 | PyErr_Clear(); |
| 1658 | |
| 1659 | else if (PyList_Check(list)) { |
| 1660 | int i; |
| 1661 | for (i = 0; i < PyList_GET_SIZE(list); ++i) { |
| 1662 | PyObject *item = PyList_GET_ITEM(list, i); |
| 1663 | if (PyString_Check(item)) { |
| 1664 | result = PyDict_SetItem(dict, item, Py_None); |
| 1665 | if (result < 0) |
| 1666 | break; |
| 1667 | } |
| 1668 | } |
| 1669 | } |
| 1670 | |
| 1671 | Py_XDECREF(list); |
| 1672 | return result; |
| 1673 | } |
| 1674 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1675 | /* Like __builtin__.dir(arg). See bltinmodule.c's builtin_dir for the |
| 1676 | docstring, which should be kept in synch with this implementation. */ |
| 1677 | |
| 1678 | PyObject * |
| 1679 | PyObject_Dir(PyObject *arg) |
| 1680 | { |
| 1681 | /* Set exactly one of these non-NULL before the end. */ |
| 1682 | PyObject *result = NULL; /* result list */ |
| 1683 | PyObject *masterdict = NULL; /* result is masterdict.keys() */ |
| 1684 | |
| 1685 | /* If NULL arg, return the locals. */ |
| 1686 | if (arg == NULL) { |
| 1687 | PyObject *locals = PyEval_GetLocals(); |
| 1688 | if (locals == NULL) |
| 1689 | goto error; |
Raymond Hettinger | 214b1c3 | 2004-07-02 06:41:07 +0000 | [diff] [blame] | 1690 | result = PyMapping_Keys(locals); |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1691 | if (result == NULL) |
| 1692 | goto error; |
| 1693 | } |
| 1694 | |
| 1695 | /* Elif this is some form of module, we only want its dict. */ |
Guido van Rossum | 8dbd3d8 | 2001-09-10 18:27:43 +0000 | [diff] [blame] | 1696 | else if (PyModule_Check(arg)) { |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1697 | masterdict = PyObject_GetAttrString(arg, "__dict__"); |
| 1698 | if (masterdict == NULL) |
| 1699 | goto error; |
Guido van Rossum | 8dbd3d8 | 2001-09-10 18:27:43 +0000 | [diff] [blame] | 1700 | if (!PyDict_Check(masterdict)) { |
| 1701 | PyErr_SetString(PyExc_TypeError, |
| 1702 | "module.__dict__ is not a dictionary"); |
| 1703 | goto error; |
| 1704 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1705 | } |
| 1706 | |
| 1707 | /* Elif some form of type or class, grab its dict and its bases. |
| 1708 | We deliberately don't suck up its __class__, as methods belonging |
| 1709 | to the metaclass would probably be more confusing than helpful. */ |
| 1710 | else if (PyType_Check(arg) || PyClass_Check(arg)) { |
| 1711 | masterdict = PyDict_New(); |
| 1712 | if (masterdict == NULL) |
| 1713 | goto error; |
| 1714 | if (merge_class_dict(masterdict, arg) < 0) |
| 1715 | goto error; |
| 1716 | } |
| 1717 | |
| 1718 | /* Else look at its dict, and the attrs reachable from its class. */ |
| 1719 | else { |
| 1720 | PyObject *itsclass; |
| 1721 | /* Create a dict to start with. CAUTION: Not everything |
| 1722 | responding to __dict__ returns a dict! */ |
| 1723 | masterdict = PyObject_GetAttrString(arg, "__dict__"); |
| 1724 | if (masterdict == NULL) { |
| 1725 | PyErr_Clear(); |
| 1726 | masterdict = PyDict_New(); |
| 1727 | } |
| 1728 | else if (!PyDict_Check(masterdict)) { |
| 1729 | Py_DECREF(masterdict); |
| 1730 | masterdict = PyDict_New(); |
| 1731 | } |
| 1732 | else { |
| 1733 | /* The object may have returned a reference to its |
| 1734 | dict, so copy it to avoid mutating it. */ |
| 1735 | PyObject *temp = PyDict_Copy(masterdict); |
| 1736 | Py_DECREF(masterdict); |
| 1737 | masterdict = temp; |
| 1738 | } |
| 1739 | if (masterdict == NULL) |
| 1740 | goto error; |
| 1741 | |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1742 | /* Merge in __members__ and __methods__ (if any). |
| 1743 | XXX Would like this to go away someday; for now, it's |
| 1744 | XXX needed to get at im_self etc of method objects. */ |
| 1745 | if (merge_list_attr(masterdict, arg, "__members__") < 0) |
| 1746 | goto error; |
| 1747 | if (merge_list_attr(masterdict, arg, "__methods__") < 0) |
| 1748 | goto error; |
| 1749 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1750 | /* Merge in attrs reachable from its class. |
| 1751 | CAUTION: Not all objects have a __class__ attr. */ |
| 1752 | itsclass = PyObject_GetAttrString(arg, "__class__"); |
| 1753 | if (itsclass == NULL) |
| 1754 | PyErr_Clear(); |
| 1755 | else { |
| 1756 | int status = merge_class_dict(masterdict, itsclass); |
| 1757 | Py_DECREF(itsclass); |
| 1758 | if (status < 0) |
| 1759 | goto error; |
| 1760 | } |
| 1761 | } |
| 1762 | |
| 1763 | assert((result == NULL) ^ (masterdict == NULL)); |
| 1764 | if (masterdict != NULL) { |
| 1765 | /* The result comes from its keys. */ |
| 1766 | assert(result == NULL); |
| 1767 | result = PyDict_Keys(masterdict); |
| 1768 | if (result == NULL) |
| 1769 | goto error; |
| 1770 | } |
| 1771 | |
| 1772 | assert(result); |
Raymond Hettinger | 2a7dede | 2004-08-07 04:55:30 +0000 | [diff] [blame] | 1773 | if (!PyList_Check(result)) { |
Georg Brandl | ccff785 | 2006-06-18 22:17:29 +0000 | [diff] [blame] | 1774 | PyErr_Format(PyExc_TypeError, |
| 1775 | "Expected keys() to be a list, not '%.200s'", |
| 1776 | result->ob_type->tp_name); |
Raymond Hettinger | 2a7dede | 2004-08-07 04:55:30 +0000 | [diff] [blame] | 1777 | goto error; |
| 1778 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1779 | if (PyList_Sort(result) != 0) |
| 1780 | goto error; |
| 1781 | else |
| 1782 | goto normal_return; |
| 1783 | |
| 1784 | error: |
| 1785 | Py_XDECREF(result); |
| 1786 | result = NULL; |
| 1787 | /* fall through */ |
| 1788 | normal_return: |
| 1789 | Py_XDECREF(masterdict); |
| 1790 | return result; |
| 1791 | } |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1792 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1793 | /* |
| 1794 | NoObject is usable as a non-NULL undefined value, used by the macro None. |
| 1795 | There is (and should be!) no way to create other objects of this type, |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1796 | so there is exactly one (which is indestructible, by the way). |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1797 | (XXX This type and the type of NotImplemented below should be unified.) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1798 | */ |
| 1799 | |
Guido van Rossum | 0c182a1 | 1992-03-27 17:26:13 +0000 | [diff] [blame] | 1800 | /* ARGSUSED */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1801 | static PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1802 | none_repr(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1803 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1804 | return PyString_FromString("None"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1805 | } |
| 1806 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1807 | /* ARGUSED */ |
| 1808 | static void |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1809 | none_dealloc(PyObject* ignore) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1810 | { |
| 1811 | /* This should never get called, but we also don't want to SEGV if |
| 1812 | * we accidently decref None out of existance. |
| 1813 | */ |
Martin v. Löwis | 3f19b10 | 2002-08-07 16:21:51 +0000 | [diff] [blame] | 1814 | Py_FatalError("deallocating None"); |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1815 | } |
| 1816 | |
| 1817 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1818 | static PyTypeObject PyNone_Type = { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1819 | PyObject_HEAD_INIT(&PyType_Type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1820 | 0, |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1821 | "NoneType", |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1822 | 0, |
| 1823 | 0, |
Georg Brandl | 347b300 | 2006-03-30 11:57:00 +0000 | [diff] [blame] | 1824 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 1825 | 0, /*tp_print*/ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1826 | 0, /*tp_getattr*/ |
| 1827 | 0, /*tp_setattr*/ |
| 1828 | 0, /*tp_compare*/ |
Georg Brandl | 347b300 | 2006-03-30 11:57:00 +0000 | [diff] [blame] | 1829 | none_repr, /*tp_repr*/ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1830 | 0, /*tp_as_number*/ |
| 1831 | 0, /*tp_as_sequence*/ |
| 1832 | 0, /*tp_as_mapping*/ |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1833 | 0, /*tp_hash */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1834 | }; |
| 1835 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1836 | PyObject _Py_NoneStruct = { |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1837 | PyObject_HEAD_INIT(&PyNone_Type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1838 | }; |
| 1839 | |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1840 | /* NotImplemented is an object that can be used to signal that an |
| 1841 | operation is not implemented for the given type combination. */ |
| 1842 | |
| 1843 | static PyObject * |
| 1844 | NotImplemented_repr(PyObject *op) |
| 1845 | { |
| 1846 | return PyString_FromString("NotImplemented"); |
| 1847 | } |
| 1848 | |
| 1849 | static PyTypeObject PyNotImplemented_Type = { |
| 1850 | PyObject_HEAD_INIT(&PyType_Type) |
| 1851 | 0, |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1852 | "NotImplementedType", |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1853 | 0, |
| 1854 | 0, |
Georg Brandl | 347b300 | 2006-03-30 11:57:00 +0000 | [diff] [blame] | 1855 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1856 | 0, /*tp_print*/ |
| 1857 | 0, /*tp_getattr*/ |
| 1858 | 0, /*tp_setattr*/ |
| 1859 | 0, /*tp_compare*/ |
Georg Brandl | 347b300 | 2006-03-30 11:57:00 +0000 | [diff] [blame] | 1860 | NotImplemented_repr, /*tp_repr*/ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1861 | 0, /*tp_as_number*/ |
| 1862 | 0, /*tp_as_sequence*/ |
| 1863 | 0, /*tp_as_mapping*/ |
| 1864 | 0, /*tp_hash */ |
| 1865 | }; |
| 1866 | |
| 1867 | PyObject _Py_NotImplementedStruct = { |
| 1868 | PyObject_HEAD_INIT(&PyNotImplemented_Type) |
| 1869 | }; |
| 1870 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1871 | void |
| 1872 | _Py_ReadyTypes(void) |
| 1873 | { |
| 1874 | if (PyType_Ready(&PyType_Type) < 0) |
| 1875 | Py_FatalError("Can't initialize 'type'"); |
| 1876 | |
Fred Drake | 0a4dd39 | 2004-07-02 18:57:45 +0000 | [diff] [blame] | 1877 | if (PyType_Ready(&_PyWeakref_RefType) < 0) |
| 1878 | Py_FatalError("Can't initialize 'weakref'"); |
| 1879 | |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 1880 | if (PyType_Ready(&PyBool_Type) < 0) |
| 1881 | Py_FatalError("Can't initialize 'bool'"); |
| 1882 | |
Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 1883 | if (PyType_Ready(&PyString_Type) < 0) |
| 1884 | Py_FatalError("Can't initialize 'str'"); |
| 1885 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1886 | if (PyType_Ready(&PyList_Type) < 0) |
| 1887 | Py_FatalError("Can't initialize 'list'"); |
| 1888 | |
| 1889 | if (PyType_Ready(&PyNone_Type) < 0) |
| 1890 | Py_FatalError("Can't initialize type(None)"); |
| 1891 | |
| 1892 | if (PyType_Ready(&PyNotImplemented_Type) < 0) |
| 1893 | Py_FatalError("Can't initialize type(NotImplemented)"); |
| 1894 | } |
| 1895 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1896 | |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 1897 | #ifdef Py_TRACE_REFS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1898 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1899 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1900 | _Py_NewReference(PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1901 | { |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1902 | _Py_INC_REFTOTAL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1903 | op->ob_refcnt = 1; |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 1904 | _Py_AddToAllObjects(op, 1); |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1905 | _Py_INC_TPALLOCS(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1906 | } |
| 1907 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1908 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1909 | _Py_ForgetReference(register PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1910 | { |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 1911 | #ifdef SLOW_UNREF_CHECK |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1912 | register PyObject *p; |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 1913 | #endif |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1914 | if (op->ob_refcnt < 0) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1915 | Py_FatalError("UNREF negative refcnt"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1916 | if (op == &refchain || |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1917 | op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1918 | Py_FatalError("UNREF invalid object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1919 | #ifdef SLOW_UNREF_CHECK |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1920 | for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) { |
| 1921 | if (p == op) |
| 1922 | break; |
| 1923 | } |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1924 | if (p == &refchain) /* Not found */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1925 | Py_FatalError("UNREF unknown object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1926 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1927 | op->_ob_next->_ob_prev = op->_ob_prev; |
| 1928 | op->_ob_prev->_ob_next = op->_ob_next; |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1929 | op->_ob_next = op->_ob_prev = NULL; |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1930 | _Py_INC_TPFREES(op); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1931 | } |
| 1932 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1933 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1934 | _Py_Dealloc(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1935 | { |
Guido van Rossum | 9776adf | 1994-09-07 14:36:45 +0000 | [diff] [blame] | 1936 | destructor dealloc = op->ob_type->tp_dealloc; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1937 | _Py_ForgetReference(op); |
Guido van Rossum | 9776adf | 1994-09-07 14:36:45 +0000 | [diff] [blame] | 1938 | (*dealloc)(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1939 | } |
| 1940 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1941 | /* Print all live objects. Because PyObject_Print is called, the |
| 1942 | * interpreter must be in a healthy state. |
| 1943 | */ |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1944 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1945 | _Py_PrintReferences(FILE *fp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1946 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1947 | PyObject *op; |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1948 | fprintf(fp, "Remaining objects:\n"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1949 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) { |
Tim Peters | cbd6f18 | 2006-04-11 19:12:33 +0000 | [diff] [blame] | 1950 | fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt); |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1951 | if (PyObject_Print(op, fp, 0) != 0) |
| 1952 | PyErr_Clear(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1953 | putc('\n', fp); |
| 1954 | } |
| 1955 | } |
| 1956 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1957 | /* Print the addresses of all live objects. Unlike _Py_PrintReferences, this |
| 1958 | * doesn't make any calls to the Python C API, so is always safe to call. |
| 1959 | */ |
| 1960 | void |
| 1961 | _Py_PrintReferenceAddresses(FILE *fp) |
| 1962 | { |
| 1963 | PyObject *op; |
| 1964 | fprintf(fp, "Remaining object addresses:\n"); |
| 1965 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) |
Tim Peters | cbd6f18 | 2006-04-11 19:12:33 +0000 | [diff] [blame] | 1966 | fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op, |
| 1967 | op->ob_refcnt, op->ob_type->tp_name); |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1968 | } |
| 1969 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1970 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1971 | _Py_GetObjects(PyObject *self, PyObject *args) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1972 | { |
| 1973 | int i, n; |
| 1974 | PyObject *t = NULL; |
| 1975 | PyObject *res, *op; |
| 1976 | |
| 1977 | if (!PyArg_ParseTuple(args, "i|O", &n, &t)) |
| 1978 | return NULL; |
| 1979 | op = refchain._ob_next; |
| 1980 | res = PyList_New(0); |
| 1981 | if (res == NULL) |
| 1982 | return NULL; |
| 1983 | for (i = 0; (n == 0 || i < n) && op != &refchain; i++) { |
| 1984 | while (op == self || op == args || op == res || op == t || |
Guido van Rossum | 3c29602 | 2001-07-14 17:58:00 +0000 | [diff] [blame] | 1985 | (t != NULL && op->ob_type != (PyTypeObject *) t)) { |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1986 | op = op->_ob_next; |
| 1987 | if (op == &refchain) |
| 1988 | return res; |
| 1989 | } |
| 1990 | if (PyList_Append(res, op) < 0) { |
| 1991 | Py_DECREF(res); |
| 1992 | return NULL; |
| 1993 | } |
| 1994 | op = op->_ob_next; |
| 1995 | } |
| 1996 | return res; |
| 1997 | } |
| 1998 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1999 | #endif |
Guido van Rossum | 97ead3f | 1996-01-12 01:24:09 +0000 | [diff] [blame] | 2000 | |
| 2001 | |
| 2002 | /* Hack to force loading of cobject.o */ |
Guido van Rossum | da9c271 | 1996-12-05 21:58:58 +0000 | [diff] [blame] | 2003 | PyTypeObject *_Py_cobject_hack = &PyCObject_Type; |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 2004 | |
| 2005 | |
| 2006 | /* Hack to force loading of abstract.o */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 2007 | Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size; |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2008 | |
| 2009 | |
Andrew M. Kuchling | 1582a3a | 2000-08-16 12:27:23 +0000 | [diff] [blame] | 2010 | /* Python's malloc wrappers (see pymem.h) */ |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2011 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 2012 | void * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2013 | PyMem_Malloc(size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2014 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 2015 | return PyMem_MALLOC(nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2016 | } |
| 2017 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 2018 | void * |
| 2019 | PyMem_Realloc(void *p, size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2020 | { |
Tim Peters | af3e8de | 2002-04-12 07:22:56 +0000 | [diff] [blame] | 2021 | return PyMem_REALLOC(p, nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | void |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 2025 | PyMem_Free(void *p) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2026 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 2027 | PyMem_FREE(p); |
| 2028 | } |
| 2029 | |
| 2030 | |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2031 | /* These methods are used to control infinite recursion in repr, str, print, |
| 2032 | etc. Container objects that may recursively contain themselves, |
| 2033 | e.g. builtin dictionaries and lists, should used Py_ReprEnter() and |
| 2034 | Py_ReprLeave() to avoid infinite recursion. |
| 2035 | |
| 2036 | Py_ReprEnter() returns 0 the first time it is called for a particular |
| 2037 | object and 1 every time thereafter. It returns -1 if an exception |
| 2038 | occurred. Py_ReprLeave() has no return value. |
| 2039 | |
| 2040 | See dictobject.c and listobject.c for examples of use. |
| 2041 | */ |
| 2042 | |
| 2043 | #define KEY "Py_Repr" |
| 2044 | |
| 2045 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2046 | Py_ReprEnter(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2047 | { |
| 2048 | PyObject *dict; |
| 2049 | PyObject *list; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 2050 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2051 | |
| 2052 | dict = PyThreadState_GetDict(); |
| 2053 | if (dict == NULL) |
Guido van Rossum | 0fc8f00 | 2003-04-15 15:12:39 +0000 | [diff] [blame] | 2054 | return 0; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2055 | list = PyDict_GetItemString(dict, KEY); |
| 2056 | if (list == NULL) { |
| 2057 | list = PyList_New(0); |
| 2058 | if (list == NULL) |
| 2059 | return -1; |
| 2060 | if (PyDict_SetItemString(dict, KEY, list) < 0) |
| 2061 | return -1; |
| 2062 | Py_DECREF(list); |
| 2063 | } |
| 2064 | i = PyList_GET_SIZE(list); |
| 2065 | while (--i >= 0) { |
| 2066 | if (PyList_GET_ITEM(list, i) == obj) |
| 2067 | return 1; |
| 2068 | } |
| 2069 | PyList_Append(list, obj); |
| 2070 | return 0; |
| 2071 | } |
| 2072 | |
| 2073 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2074 | Py_ReprLeave(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2075 | { |
| 2076 | PyObject *dict; |
| 2077 | PyObject *list; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 2078 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2079 | |
| 2080 | dict = PyThreadState_GetDict(); |
Guido van Rossum | eb90946 | 1998-04-11 15:17:34 +0000 | [diff] [blame] | 2081 | if (dict == NULL) |
| 2082 | return; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2083 | list = PyDict_GetItemString(dict, KEY); |
Guido van Rossum | eb90946 | 1998-04-11 15:17:34 +0000 | [diff] [blame] | 2084 | if (list == NULL || !PyList_Check(list)) |
| 2085 | return; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2086 | i = PyList_GET_SIZE(list); |
| 2087 | /* Count backwards because we always expect obj to be list[-1] */ |
| 2088 | while (--i >= 0) { |
| 2089 | if (PyList_GET_ITEM(list, i) == obj) { |
| 2090 | PyList_SetSlice(list, i, i + 1, NULL); |
| 2091 | break; |
| 2092 | } |
| 2093 | } |
| 2094 | } |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2095 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2096 | /* Trashcan support. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2097 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2098 | /* Current call-stack depth of tp_dealloc calls. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2099 | int _PyTrash_delete_nesting = 0; |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 2100 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2101 | /* List of objects that still need to be cleaned up, singly linked via their |
| 2102 | * gc headers' gc_prev pointers. |
| 2103 | */ |
| 2104 | PyObject *_PyTrash_delete_later = NULL; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2105 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2106 | /* Add op to the _PyTrash_delete_later list. Called when the current |
| 2107 | * call-stack depth gets large. op must be a currently untracked gc'ed |
| 2108 | * object, with refcount 0. Py_DECREF must already have been called on it. |
| 2109 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2110 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2111 | _PyTrash_deposit_object(PyObject *op) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2112 | { |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2113 | assert(PyObject_IS_GC(op)); |
| 2114 | assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); |
| 2115 | assert(op->ob_refcnt == 0); |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 2116 | _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later; |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 2117 | _PyTrash_delete_later = op; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2118 | } |
| 2119 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2120 | /* Dealloccate all the objects in the _PyTrash_delete_later list. Called when |
| 2121 | * the call-stack unwinds again. |
| 2122 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2123 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2124 | _PyTrash_destroy_chain(void) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2125 | { |
| 2126 | while (_PyTrash_delete_later) { |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2127 | PyObject *op = _PyTrash_delete_later; |
| 2128 | destructor dealloc = op->ob_type->tp_dealloc; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 2129 | |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 2130 | _PyTrash_delete_later = |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2131 | (PyObject*) _Py_AS_GC(op)->gc.gc_prev; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 2132 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2133 | /* Call the deallocator directly. This used to try to |
| 2134 | * fool Py_DECREF into calling it indirectly, but |
| 2135 | * Py_DECREF was already called on this object, and in |
| 2136 | * assorted non-release builds calling Py_DECREF again ends |
| 2137 | * up distorting allocation statistics. |
| 2138 | */ |
| 2139 | assert(op->ob_refcnt == 0); |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2140 | ++_PyTrash_delete_nesting; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2141 | (*dealloc)(op); |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2142 | --_PyTrash_delete_nesting; |
| 2143 | } |
| 2144 | } |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 2145 | |
| 2146 | #ifdef __cplusplus |
| 2147 | } |
| 2148 | #endif |