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 | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 5 | #include "sliceobject.h" /* For PyEllipsis_Type */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 7 | #ifdef __cplusplus |
| 8 | extern "C" { |
| 9 | #endif |
| 10 | |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 11 | #ifdef Py_REF_DEBUG |
Neal Norwitz | 84632ee | 2006-03-04 20:00:59 +0000 | [diff] [blame] | 12 | Py_ssize_t _Py_RefTotal; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 13 | |
| 14 | Py_ssize_t |
| 15 | _Py_GetRefTotal(void) |
| 16 | { |
| 17 | PyObject *o; |
| 18 | Py_ssize_t total = _Py_RefTotal; |
| 19 | /* ignore the references to the dummy object of the dicts and sets |
| 20 | because they are not reliable and not useful (now that the |
| 21 | hash table code is well-tested) */ |
| 22 | o = _PyDict_Dummy(); |
| 23 | if (o != NULL) |
| 24 | total -= o->ob_refcnt; |
| 25 | o = _PySet_Dummy(); |
| 26 | if (o != NULL) |
| 27 | total -= o->ob_refcnt; |
| 28 | return total; |
| 29 | } |
| 30 | #endif /* Py_REF_DEBUG */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 31 | |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 32 | int Py_DivisionWarningFlag; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 34 | /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros. |
| 35 | These are used by the individual routines for object creation. |
| 36 | Do not call them otherwise, they do not initialize the object! */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 37 | |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 38 | #ifdef Py_TRACE_REFS |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 39 | /* Head of circular doubly-linked list of all objects. These are linked |
| 40 | * together via the _ob_prev and _ob_next members of a PyObject, which |
| 41 | * exist only in a Py_TRACE_REFS build. |
| 42 | */ |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 43 | static PyObject refchain = {&refchain, &refchain}; |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 44 | |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 45 | /* Insert op at the front of the list of all objects. If force is true, |
| 46 | * op is added even if _ob_prev and _ob_next are non-NULL already. If |
| 47 | * force is false amd _ob_prev or _ob_next are non-NULL, do nothing. |
| 48 | * force should be true if and only if op points to freshly allocated, |
| 49 | * uninitialized memory, or you've unlinked op from the list and are |
Tim Peters | 51f8d38 | 2003-03-23 18:06:08 +0000 | [diff] [blame] | 50 | * relinking it into the front. |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 51 | * Note that objects are normally added to the list via _Py_NewReference, |
| 52 | * which is called by PyObject_Init. Not all objects are initialized that |
| 53 | * way, though; exceptions include statically allocated type objects, and |
| 54 | * statically allocated singletons (like Py_True and Py_None). |
| 55 | */ |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 56 | void |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 57 | _Py_AddToAllObjects(PyObject *op, int force) |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 58 | { |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 59 | #ifdef Py_DEBUG |
| 60 | if (!force) { |
| 61 | /* If it's initialized memory, op must be in or out of |
| 62 | * the list unambiguously. |
| 63 | */ |
| 64 | assert((op->_ob_prev == NULL) == (op->_ob_next == NULL)); |
| 65 | } |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 66 | #endif |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 67 | if (force || op->_ob_prev == NULL) { |
| 68 | op->_ob_next = refchain._ob_next; |
| 69 | op->_ob_prev = &refchain; |
| 70 | refchain._ob_next->_ob_prev = op; |
| 71 | refchain._ob_next = op; |
| 72 | } |
| 73 | } |
| 74 | #endif /* Py_TRACE_REFS */ |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 75 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 76 | #ifdef COUNT_ALLOCS |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 77 | static PyTypeObject *type_list; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 78 | /* All types are added to type_list, at least when |
| 79 | they get one object created. That makes them |
| 80 | immortal, which unfortunately contributes to |
| 81 | garbage itself. If unlist_types_without_objects |
| 82 | is set, they will be removed from the type_list |
| 83 | once the last object is deallocated. */ |
| 84 | int unlist_types_without_objects; |
Sjoerd Mullender | 842d2cc | 1993-10-15 16:18:48 +0000 | [diff] [blame] | 85 | extern int tuple_zero_allocs, fast_tuple_allocs; |
| 86 | extern int quick_int_allocs, quick_neg_int_allocs; |
Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 87 | extern int null_strings, one_strings; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 88 | void |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 89 | dump_counts(FILE* f) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 90 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 91 | PyTypeObject *tp; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 92 | |
| 93 | for (tp = type_list; tp; tp = tp->tp_next) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 94 | 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] | 95 | tp->tp_name, tp->tp_allocs, tp->tp_frees, |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 96 | tp->tp_maxalloc); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 97 | fprintf(f, "fast tuple allocs: %d, empty: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 98 | fast_tuple_allocs, tuple_zero_allocs); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 99 | fprintf(f, "fast int allocs: pos: %d, neg: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 100 | quick_int_allocs, quick_neg_int_allocs); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 101 | fprintf(f, "null strings: %d, 1-strings: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 102 | null_strings, one_strings); |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 105 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 106 | get_counts(void) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 107 | { |
| 108 | PyTypeObject *tp; |
| 109 | PyObject *result; |
| 110 | PyObject *v; |
| 111 | |
| 112 | result = PyList_New(0); |
| 113 | if (result == NULL) |
| 114 | return NULL; |
| 115 | for (tp = type_list; tp; tp = tp->tp_next) { |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 116 | v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs, |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 117 | tp->tp_frees, tp->tp_maxalloc); |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 118 | if (v == NULL) { |
| 119 | Py_DECREF(result); |
| 120 | return NULL; |
| 121 | } |
| 122 | if (PyList_Append(result, v) < 0) { |
| 123 | Py_DECREF(v); |
| 124 | Py_DECREF(result); |
| 125 | return NULL; |
| 126 | } |
| 127 | Py_DECREF(v); |
| 128 | } |
| 129 | return result; |
| 130 | } |
| 131 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 132 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 133 | inc_count(PyTypeObject *tp) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 134 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 135 | if (tp->tp_next == NULL && tp->tp_prev == NULL) { |
Guido van Rossum | d8953cb | 1995-04-06 14:46:26 +0000 | [diff] [blame] | 136 | /* first time; insert in linked list */ |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 137 | if (tp->tp_next != NULL) /* sanity check */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 138 | Py_FatalError("XXX inc_count sanity check"); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 139 | if (type_list) |
| 140 | type_list->tp_prev = tp; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 141 | tp->tp_next = type_list; |
Tim Peters | c6a3ff6 | 2002-07-08 22:11:52 +0000 | [diff] [blame] | 142 | /* Note that as of Python 2.2, heap-allocated type objects |
| 143 | * can go away, but this code requires that they stay alive |
| 144 | * until program exit. That's why we're careful with |
| 145 | * refcounts here. type_list gets a new reference to tp, |
| 146 | * while ownership of the reference type_list used to hold |
| 147 | * (if any) was transferred to tp->tp_next in the line above. |
| 148 | * tp is thus effectively immortal after this. |
| 149 | */ |
| 150 | Py_INCREF(tp); |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 151 | type_list = tp; |
Tim Peters | 3e40c7f | 2003-03-23 03:04:32 +0000 | [diff] [blame] | 152 | #ifdef Py_TRACE_REFS |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 153 | /* Also insert in the doubly-linked list of all objects, |
| 154 | * if not already there. |
| 155 | */ |
| 156 | _Py_AddToAllObjects((PyObject *)tp, 0); |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 157 | #endif |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 158 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 159 | tp->tp_allocs++; |
| 160 | if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc) |
| 161 | tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 162 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 163 | |
| 164 | void dec_count(PyTypeObject *tp) |
| 165 | { |
| 166 | tp->tp_frees++; |
| 167 | if (unlist_types_without_objects && |
| 168 | tp->tp_allocs == tp->tp_frees) { |
| 169 | /* unlink the type from type_list */ |
| 170 | if (tp->tp_prev) |
| 171 | tp->tp_prev->tp_next = tp->tp_next; |
| 172 | else |
| 173 | type_list = tp->tp_next; |
| 174 | if (tp->tp_next) |
| 175 | tp->tp_next->tp_prev = tp->tp_prev; |
| 176 | tp->tp_next = tp->tp_prev = NULL; |
| 177 | Py_DECREF(tp); |
| 178 | } |
| 179 | } |
| 180 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 181 | #endif |
| 182 | |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 183 | #ifdef Py_REF_DEBUG |
| 184 | /* Log a fatal error; doesn't return. */ |
| 185 | void |
| 186 | _Py_NegativeRefcount(const char *fname, int lineno, PyObject *op) |
| 187 | { |
| 188 | char buf[300]; |
| 189 | |
| 190 | PyOS_snprintf(buf, sizeof(buf), |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 191 | "%s:%i object at %p has negative ref count " |
| 192 | "%" PY_FORMAT_SIZE_T "d", |
| 193 | fname, lineno, op, op->ob_refcnt); |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 194 | Py_FatalError(buf); |
| 195 | } |
| 196 | |
| 197 | #endif /* Py_REF_DEBUG */ |
| 198 | |
Thomas Heller | 1328b52 | 2004-04-22 17:23:49 +0000 | [diff] [blame] | 199 | void |
| 200 | Py_IncRef(PyObject *o) |
| 201 | { |
| 202 | Py_XINCREF(o); |
| 203 | } |
| 204 | |
| 205 | void |
| 206 | Py_DecRef(PyObject *o) |
| 207 | { |
| 208 | Py_XDECREF(o); |
| 209 | } |
| 210 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 211 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 212 | PyObject_Init(PyObject *op, PyTypeObject *tp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 213 | { |
Guido van Rossum | 6e08c14 | 2002-10-11 20:37:24 +0000 | [diff] [blame] | 214 | if (op == NULL) |
| 215 | return PyErr_NoMemory(); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 216 | /* Any changes should be reflected in PyObject_INIT (objimpl.h) */ |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 217 | Py_Type(op) = tp; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 218 | _Py_NewReference(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 219 | return op; |
| 220 | } |
| 221 | |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 222 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 223 | PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 224 | { |
Guido van Rossum | 6e08c14 | 2002-10-11 20:37:24 +0000 | [diff] [blame] | 225 | if (op == NULL) |
| 226 | return (PyVarObject *) PyErr_NoMemory(); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 227 | /* Any changes should be reflected in PyObject_INIT_VAR */ |
| 228 | op->ob_size = size; |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 229 | Py_Type(op) = tp; |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 230 | _Py_NewReference((PyObject *)op); |
| 231 | return op; |
| 232 | } |
| 233 | |
| 234 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 235 | _PyObject_New(PyTypeObject *tp) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 236 | { |
| 237 | PyObject *op; |
| 238 | op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp)); |
| 239 | if (op == NULL) |
| 240 | return PyErr_NoMemory(); |
| 241 | return PyObject_INIT(op, tp); |
| 242 | } |
| 243 | |
Guido van Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 244 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 245 | _PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 246 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 247 | PyVarObject *op; |
Tim Peters | f2a67da | 2001-10-07 03:54:51 +0000 | [diff] [blame] | 248 | const size_t size = _PyObject_VAR_SIZE(tp, nitems); |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 249 | op = (PyVarObject *) PyObject_MALLOC(size); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 250 | if (op == NULL) |
Guido van Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 251 | return (PyVarObject *)PyErr_NoMemory(); |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 252 | return PyObject_INIT_VAR(op, tp, nitems); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 253 | } |
| 254 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 255 | /* Implementation of PyObject_Print with recursion checking */ |
| 256 | static int |
| 257 | internal_print(PyObject *op, FILE *fp, int flags, int nesting) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 258 | { |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 259 | int ret = 0; |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 260 | if (nesting > 10) { |
| 261 | PyErr_SetString(PyExc_RuntimeError, "print recursion"); |
| 262 | return -1; |
| 263 | } |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 264 | if (PyErr_CheckSignals()) |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 265 | return -1; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 266 | #ifdef USE_STACKCHECK |
| 267 | if (PyOS_CheckStack()) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 268 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 269 | return -1; |
| 270 | } |
| 271 | #endif |
Guido van Rossum | 687ef6e | 2000-01-12 16:28:58 +0000 | [diff] [blame] | 272 | clearerr(fp); /* Clear any previous error condition */ |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 273 | if (op == NULL) { |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 274 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 275 | fprintf(fp, "<nil>"); |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 276 | Py_END_ALLOW_THREADS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 277 | } |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 278 | else { |
| 279 | if (op->ob_refcnt <= 0) |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 280 | /* XXX(twouters) cast refcount to long until %zd is |
| 281 | universally available */ |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 282 | Py_BEGIN_ALLOW_THREADS |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 283 | fprintf(fp, "<refcnt %ld at %p>", |
| 284 | (long)op->ob_refcnt, op); |
Thomas Wouters | 1b7f891 | 2007-09-19 03:06:30 +0000 | [diff] [blame] | 285 | Py_END_ALLOW_THREADS |
Guido van Rossum | 04dbf3b | 2007-08-07 19:51:00 +0000 | [diff] [blame] | 286 | else { |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 287 | PyObject *s; |
| 288 | if (flags & Py_PRINT_RAW) |
| 289 | s = PyObject_Str(op); |
| 290 | else |
Guido van Rossum | 6ca130d | 2007-08-09 20:47:59 +0000 | [diff] [blame] | 291 | s = PyObject_Repr(op); |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 292 | if (s == NULL) |
| 293 | ret = -1; |
Guido van Rossum | 6ca130d | 2007-08-09 20:47:59 +0000 | [diff] [blame] | 294 | else if (PyString_Check(s)) { |
| 295 | fwrite(PyString_AS_STRING(s), 1, |
| 296 | PyString_GET_SIZE(s), fp); |
| 297 | } |
| 298 | else if (PyUnicode_Check(s)) { |
| 299 | PyObject *t; |
| 300 | t = _PyUnicode_AsDefaultEncodedString(s, NULL); |
| 301 | if (t == NULL) |
| 302 | ret = 0; |
| 303 | else { |
| 304 | fwrite(PyString_AS_STRING(t), 1, |
| 305 | PyString_GET_SIZE(t), fp); |
| 306 | } |
| 307 | } |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 308 | else { |
Guido van Rossum | 6ca130d | 2007-08-09 20:47:59 +0000 | [diff] [blame] | 309 | PyErr_Format(PyExc_TypeError, |
| 310 | "str() or repr() returned '%.100s'", |
| 311 | s->ob_type->tp_name); |
| 312 | ret = -1; |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 313 | } |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 314 | Py_XDECREF(s); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 315 | } |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 316 | } |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 317 | if (ret == 0) { |
| 318 | if (ferror(fp)) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 319 | PyErr_SetFromErrno(PyExc_IOError); |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 320 | clearerr(fp); |
| 321 | ret = -1; |
| 322 | } |
| 323 | } |
| 324 | return ret; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 327 | int |
| 328 | PyObject_Print(PyObject *op, FILE *fp, int flags) |
| 329 | { |
| 330 | return internal_print(op, fp, flags, 0); |
| 331 | } |
| 332 | |
Guido van Rossum | 3893815 | 2006-08-21 23:36:26 +0000 | [diff] [blame] | 333 | /* For debugging convenience. Set a breakpoint here and call it from your DLL */ |
| 334 | void |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 335 | _Py_BreakPoint(void) |
Guido van Rossum | 3893815 | 2006-08-21 23:36:26 +0000 | [diff] [blame] | 336 | { |
| 337 | } |
| 338 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 339 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 340 | /* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */ |
Guido van Rossum | 3893815 | 2006-08-21 23:36:26 +0000 | [diff] [blame] | 341 | void |
| 342 | _PyObject_Dump(PyObject* op) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 343 | { |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 344 | if (op == NULL) |
| 345 | fprintf(stderr, "NULL\n"); |
| 346 | else { |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 347 | fprintf(stderr, "object : "); |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 348 | (void)PyObject_Print(op, stderr, 0); |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 349 | /* XXX(twouters) cast refcount to long until %zd is |
| 350 | universally available */ |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 351 | fprintf(stderr, "\n" |
| 352 | "type : %s\n" |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 353 | "refcount: %ld\n" |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 354 | "address : %p\n", |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 355 | Py_Type(op)==NULL ? "NULL" : Py_Type(op)->tp_name, |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 356 | (long)op->ob_refcnt, |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 357 | op); |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 358 | } |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 359 | } |
Barry Warsaw | 903138f | 2001-01-23 16:33:18 +0000 | [diff] [blame] | 360 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 361 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 362 | PyObject_Repr(PyObject *v) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 363 | { |
Neal Norwitz | 6ea45d3 | 2007-08-26 04:19:43 +0000 | [diff] [blame] | 364 | PyObject *res; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 365 | if (PyErr_CheckSignals()) |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 366 | return NULL; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 367 | #ifdef USE_STACKCHECK |
| 368 | if (PyOS_CheckStack()) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 369 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 370 | return NULL; |
| 371 | } |
| 372 | #endif |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 373 | if (v == NULL) |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 374 | return PyUnicode_FromString("<NULL>"); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 375 | if (Py_Type(v)->tp_repr == NULL) |
| 376 | return PyUnicode_FromFormat("<%s object at %p>", |
| 377 | v->ob_type->tp_name, v); |
| 378 | res = (*v->ob_type->tp_repr)(v); |
| 379 | if (res != NULL && !PyUnicode_Check(res)) { |
| 380 | PyErr_Format(PyExc_TypeError, |
| 381 | "__repr__ returned non-string (type %.200s)", |
| 382 | res->ob_type->tp_name); |
| 383 | Py_DECREF(res); |
| 384 | return NULL; |
| 385 | } |
| 386 | return res; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 389 | PyObject * |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 390 | PyObject_Str(PyObject *v) |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 391 | { |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 392 | PyObject *res; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 393 | if (PyErr_CheckSignals()) |
| 394 | return NULL; |
| 395 | #ifdef USE_STACKCHECK |
| 396 | if (PyOS_CheckStack()) { |
| 397 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
| 398 | return NULL; |
| 399 | } |
| 400 | #endif |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 401 | if (v == NULL) |
Neal Norwitz | 6ea45d3 | 2007-08-26 04:19:43 +0000 | [diff] [blame] | 402 | return PyUnicode_FromString("<NULL>"); |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 403 | if (PyUnicode_CheckExact(v)) { |
| 404 | Py_INCREF(v); |
| 405 | return v; |
| 406 | } |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 407 | if (Py_Type(v)->tp_str == NULL) |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 408 | return PyObject_Repr(v); |
| 409 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 410 | /* It is possible for a type to have a tp_str representation that loops |
| 411 | infinitely. */ |
| 412 | if (Py_EnterRecursiveCall(" while getting the str of an object")) |
| 413 | return NULL; |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 414 | res = (*Py_Type(v)->tp_str)(v); |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 415 | Py_LeaveRecursiveCall(); |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 416 | if (res == NULL) |
| 417 | return NULL; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 418 | if (!PyUnicode_Check(res)) { |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 419 | PyErr_Format(PyExc_TypeError, |
| 420 | "__str__ returned non-string (type %.200s)", |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 421 | Py_Type(res)->tp_name); |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 422 | Py_DECREF(res); |
| 423 | return NULL; |
| 424 | } |
| 425 | return res; |
| 426 | } |
| 427 | |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 428 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 429 | /* The new comparison philosophy is: we completely separate three-way |
| 430 | comparison from rich comparison. That is, PyObject_Compare() and |
| 431 | PyObject_Cmp() *just* use the tp_compare slot. And PyObject_RichCompare() |
| 432 | and PyObject_RichCompareBool() *just* use the tp_richcompare slot. |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 433 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 434 | See (*) below for practical amendments. |
| 435 | |
| 436 | IOW, only cmp() uses tp_compare; the comparison operators (==, !=, <=, <, |
| 437 | >=, >) only use tp_richcompare. Note that list.sort() only uses <. |
| 438 | |
| 439 | (And yes, eventually we'll rip out cmp() and tp_compare.) |
| 440 | |
| 441 | The calling conventions are different: tp_compare only gets called with two |
| 442 | objects of the appropriate type; tp_richcompare gets called with a first |
| 443 | argument of the appropriate type and a second object of an arbitrary type. |
| 444 | We never do any kind of coercion. |
| 445 | |
| 446 | The return conventions are also different. |
| 447 | |
| 448 | The tp_compare slot should return a C int, as follows: |
| 449 | |
| 450 | -1 if a < b or if an exception occurred |
| 451 | 0 if a == b |
| 452 | +1 if a > b |
| 453 | |
| 454 | No other return values are allowed. PyObject_Compare() has the same |
| 455 | calling convention. |
| 456 | |
| 457 | The tp_richcompare slot should return an object, as follows: |
| 458 | |
| 459 | NULL if an exception occurred |
| 460 | NotImplemented if the requested comparison is not implemented |
| 461 | any other false value if the requested comparison is false |
| 462 | any other true value if the requested comparison is true |
| 463 | |
| 464 | The PyObject_RichCompare[Bool]() wrappers raise TypeError when they get |
| 465 | NotImplemented. |
| 466 | |
| 467 | (*) Practical amendments: |
| 468 | |
| 469 | - If rich comparison returns NotImplemented, == and != are decided by |
| 470 | comparing the object pointer (i.e. falling back to the base object |
| 471 | implementation). |
| 472 | |
| 473 | - If three-way comparison is not implemented, it falls back on rich |
| 474 | comparison (but not the other way around!). |
| 475 | |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 476 | */ |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 477 | |
| 478 | /* Forward */ |
| 479 | static PyObject *do_richcompare(PyObject *v, PyObject *w, int op); |
| 480 | |
| 481 | /* Perform a three-way comparison, raising TypeError if three-way comparison |
| 482 | is not supported. */ |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 483 | static int |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 484 | do_compare(PyObject *v, PyObject *w) |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 485 | { |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 486 | cmpfunc f; |
| 487 | int ok; |
| 488 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 489 | if (v->ob_type == w->ob_type && |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 490 | (f = v->ob_type->tp_compare) != NULL) { |
| 491 | return (*f)(v, w); |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 492 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 493 | |
| 494 | /* Now try three-way compare before giving up. This is intentionally |
| 495 | elaborate; if you have a it will raise TypeError if it detects two |
| 496 | objects that aren't ordered with respect to each other. */ |
| 497 | ok = PyObject_RichCompareBool(v, w, Py_LT); |
| 498 | if (ok < 0) |
| 499 | return -1; /* Error */ |
| 500 | if (ok) |
| 501 | return -1; /* Less than */ |
| 502 | ok = PyObject_RichCompareBool(v, w, Py_GT); |
| 503 | if (ok < 0) |
| 504 | return -1; /* Error */ |
| 505 | if (ok) |
| 506 | return 1; /* Greater than */ |
| 507 | ok = PyObject_RichCompareBool(v, w, Py_EQ); |
| 508 | if (ok < 0) |
| 509 | return -1; /* Error */ |
| 510 | if (ok) |
| 511 | return 0; /* Equal */ |
| 512 | |
| 513 | /* Give up */ |
| 514 | PyErr_Format(PyExc_TypeError, |
Neal Norwitz | 3bd844e | 2006-08-29 04:39:12 +0000 | [diff] [blame] | 515 | "unorderable types: '%.100s' != '%.100s'", |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 516 | v->ob_type->tp_name, |
| 517 | w->ob_type->tp_name); |
| 518 | return -1; |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 521 | /* Perform a three-way comparison. This wraps do_compare() with a check for |
| 522 | NULL arguments and a recursion check. */ |
| 523 | int |
| 524 | PyObject_Compare(PyObject *v, PyObject *w) |
| 525 | { |
| 526 | int res; |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 527 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 528 | if (v == NULL || w == NULL) { |
| 529 | if (!PyErr_Occurred()) |
| 530 | PyErr_BadInternalCall(); |
| 531 | return -1; |
| 532 | } |
| 533 | if (Py_EnterRecursiveCall(" in cmp")) |
| 534 | return -1; |
| 535 | res = do_compare(v, w); |
| 536 | Py_LeaveRecursiveCall(); |
| 537 | return res < 0 ? -1 : res; |
| 538 | } |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 539 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 540 | /* Map rich comparison operators to their swapped version, e.g. LT <--> GT */ |
Brett Cannon | a5ca2e7 | 2004-09-25 01:37:24 +0000 | [diff] [blame] | 541 | 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] | 542 | |
Guido van Rossum | 9a4e95c | 2006-12-19 21:35:46 +0000 | [diff] [blame] | 543 | static char *opstrings[] = {"<", "<=", "==", "!=", ">", ">="}; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 544 | |
| 545 | /* Perform a rich comparison, raising TypeError when the requested comparison |
| 546 | operator is not supported. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 547 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 548 | do_richcompare(PyObject *v, PyObject *w, int op) |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 549 | { |
| 550 | richcmpfunc f; |
| 551 | PyObject *res; |
| 552 | |
Guido van Rossum | 2ed6bf8 | 2001-09-27 20:30:07 +0000 | [diff] [blame] | 553 | if (v->ob_type != w->ob_type && |
| 554 | PyType_IsSubtype(w->ob_type, v->ob_type) && |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 555 | (f = w->ob_type->tp_richcompare) != NULL) { |
Tim Peters | f4aca75 | 2004-09-23 02:39:37 +0000 | [diff] [blame] | 556 | res = (*f)(w, v, _Py_SwappedOp[op]); |
Guido van Rossum | 2ed6bf8 | 2001-09-27 20:30:07 +0000 | [diff] [blame] | 557 | if (res != Py_NotImplemented) |
| 558 | return res; |
| 559 | Py_DECREF(res); |
| 560 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 561 | if ((f = v->ob_type->tp_richcompare) != NULL) { |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 562 | res = (*f)(v, w, op); |
| 563 | if (res != Py_NotImplemented) |
| 564 | return res; |
| 565 | Py_DECREF(res); |
| 566 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 567 | if ((f = w->ob_type->tp_richcompare) != NULL) { |
| 568 | res = (*f)(w, v, _Py_SwappedOp[op]); |
| 569 | if (res != Py_NotImplemented) |
| 570 | return res; |
| 571 | Py_DECREF(res); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 572 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 573 | /* If neither object implements it, provide a sensible default |
| 574 | for == and !=, but raise an exception for ordering. */ |
| 575 | switch (op) { |
| 576 | case Py_EQ: |
| 577 | res = (v == w) ? Py_True : Py_False; |
| 578 | break; |
| 579 | case Py_NE: |
| 580 | res = (v != w) ? Py_True : Py_False; |
| 581 | break; |
| 582 | default: |
Guido van Rossum | 9a4e95c | 2006-12-19 21:35:46 +0000 | [diff] [blame] | 583 | /* XXX Special-case None so it doesn't show as NoneType() */ |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 584 | PyErr_Format(PyExc_TypeError, |
| 585 | "unorderable types: %.100s() %s %.100s()", |
| 586 | v->ob_type->tp_name, |
| 587 | opstrings[op], |
| 588 | w->ob_type->tp_name); |
| 589 | return NULL; |
| 590 | } |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 591 | Py_INCREF(res); |
| 592 | return res; |
| 593 | } |
| 594 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 595 | /* Perform a rich comparison with object result. This wraps do_richcompare() |
| 596 | with a check for NULL arguments and a recursion check. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 597 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 598 | PyObject * |
| 599 | PyObject_RichCompare(PyObject *v, PyObject *w, int op) |
| 600 | { |
| 601 | PyObject *res; |
| 602 | |
| 603 | assert(Py_LT <= op && op <= Py_GE); |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 604 | if (v == NULL || w == NULL) { |
| 605 | if (!PyErr_Occurred()) |
| 606 | PyErr_BadInternalCall(); |
| 607 | return NULL; |
| 608 | } |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 609 | if (Py_EnterRecursiveCall(" in cmp")) |
| 610 | return NULL; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 611 | res = do_richcompare(v, w, op); |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 612 | Py_LeaveRecursiveCall(); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 613 | return res; |
| 614 | } |
| 615 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 616 | /* Perform a rich comparison with integer result. This wraps |
| 617 | PyObject_RichCompare(), returning -1 for error, 0 for false, 1 for true. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 618 | int |
| 619 | PyObject_RichCompareBool(PyObject *v, PyObject *w, int op) |
| 620 | { |
Raymond Hettinger | 93d4481 | 2004-03-21 17:01:44 +0000 | [diff] [blame] | 621 | PyObject *res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 622 | int ok; |
| 623 | |
Raymond Hettinger | 93d4481 | 2004-03-21 17:01:44 +0000 | [diff] [blame] | 624 | res = PyObject_RichCompare(v, w, op); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 625 | if (res == NULL) |
| 626 | return -1; |
Guido van Rossum | 81912d4 | 2002-08-24 05:33:28 +0000 | [diff] [blame] | 627 | if (PyBool_Check(res)) |
| 628 | ok = (res == Py_True); |
| 629 | else |
| 630 | ok = PyObject_IsTrue(res); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 631 | Py_DECREF(res); |
| 632 | return ok; |
| 633 | } |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 634 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 635 | /* Turn the result of a three-way comparison into the result expected by a |
| 636 | rich comparison. */ |
| 637 | PyObject * |
| 638 | Py_CmpToRich(int op, int cmp) |
| 639 | { |
| 640 | PyObject *res; |
| 641 | int ok; |
| 642 | |
| 643 | if (PyErr_Occurred()) |
| 644 | return NULL; |
| 645 | switch (op) { |
| 646 | case Py_LT: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 647 | ok = cmp < 0; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 648 | break; |
| 649 | case Py_LE: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 650 | ok = cmp <= 0; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 651 | break; |
| 652 | case Py_EQ: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 653 | ok = cmp == 0; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 654 | break; |
| 655 | case Py_NE: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 656 | ok = cmp != 0; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 657 | break; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 658 | case Py_GT: |
| 659 | ok = cmp > 0; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 660 | break; |
| 661 | case Py_GE: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 662 | ok = cmp >= 0; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 663 | break; |
| 664 | default: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 665 | PyErr_BadArgument(); |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 666 | return NULL; |
| 667 | } |
| 668 | res = ok ? Py_True : Py_False; |
| 669 | Py_INCREF(res); |
| 670 | return res; |
| 671 | } |
| 672 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 673 | /* Set of hash utility functions to help maintaining the invariant that |
Raymond Hettinger | 8183fa4 | 2004-03-21 17:35:06 +0000 | [diff] [blame] | 674 | if a==b then hash(a)==hash(b) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 675 | |
| 676 | All the utility functions (_Py_Hash*()) return "-1" to signify an error. |
| 677 | */ |
| 678 | |
| 679 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 680 | _Py_HashDouble(double v) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 681 | { |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 682 | double intpart, fractpart; |
| 683 | int expo; |
| 684 | long hipart; |
| 685 | long x; /* the final hash value */ |
| 686 | /* This is designed so that Python numbers of different types |
| 687 | * that compare equal hash to the same value; otherwise comparisons |
| 688 | * of mapping keys will turn out weird. |
| 689 | */ |
| 690 | |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 691 | fractpart = modf(v, &intpart); |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 692 | if (fractpart == 0.0) { |
| 693 | /* This must return the same hash as an equal int or long. */ |
| 694 | if (intpart > LONG_MAX || -intpart > LONG_MAX) { |
| 695 | /* Convert to long and use its hash. */ |
| 696 | PyObject *plong; /* converted to Python long */ |
| 697 | if (Py_IS_INFINITY(intpart)) |
| 698 | /* can't convert to long int -- arbitrary */ |
| 699 | v = v < 0 ? -271828.0 : 314159.0; |
| 700 | plong = PyLong_FromDouble(v); |
| 701 | if (plong == NULL) |
| 702 | return -1; |
| 703 | x = PyObject_Hash(plong); |
| 704 | Py_DECREF(plong); |
| 705 | return x; |
| 706 | } |
| 707 | /* Fits in a C long == a Python int, so is its own hash. */ |
| 708 | x = (long)intpart; |
| 709 | if (x == -1) |
| 710 | x = -2; |
| 711 | return x; |
| 712 | } |
| 713 | /* The fractional part is non-zero, so we don't have to worry about |
| 714 | * making this match the hash of some other type. |
| 715 | * Use frexp to get at the bits in the double. |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 716 | * Since the VAX D double format has 56 mantissa bits, which is the |
| 717 | * most of any double format in use, each of these parts may have as |
| 718 | * many as (but no more than) 56 significant bits. |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 719 | * So, assuming sizeof(long) >= 4, each part can be broken into two |
| 720 | * longs; frexp and multiplication are used to do that. |
| 721 | * Also, since the Cray double format has 15 exponent bits, which is |
| 722 | * the most of any double format in use, shifting the exponent field |
| 723 | * 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] | 724 | */ |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 725 | v = frexp(v, &expo); |
| 726 | v *= 2147483648.0; /* 2**31 */ |
| 727 | hipart = (long)v; /* take the top 32 bits */ |
| 728 | v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */ |
| 729 | x = hipart + (long)v + (expo << 15); |
| 730 | if (x == -1) |
| 731 | x = -2; |
| 732 | return x; |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 736 | _Py_HashPointer(void *p) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 737 | { |
| 738 | #if SIZEOF_LONG >= SIZEOF_VOID_P |
| 739 | return (long)p; |
| 740 | #else |
| 741 | /* convert to a Python long and hash that */ |
| 742 | PyObject* longobj; |
| 743 | long x; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 744 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 745 | if ((longobj = PyLong_FromVoidPtr(p)) == NULL) { |
| 746 | x = -1; |
| 747 | goto finally; |
| 748 | } |
| 749 | x = PyObject_Hash(longobj); |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 750 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 751 | finally: |
| 752 | Py_XDECREF(longobj); |
| 753 | return x; |
| 754 | #endif |
| 755 | } |
| 756 | |
| 757 | |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 758 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 759 | PyObject_Hash(PyObject *v) |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 760 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 761 | PyTypeObject *tp = v->ob_type; |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 762 | if (tp->tp_hash != NULL) |
| 763 | return (*tp->tp_hash)(v); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 764 | /* Otherwise, the object can't be hashed */ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 765 | PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'", |
| 766 | v->ob_type->tp_name); |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 767 | return -1; |
| 768 | } |
| 769 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 770 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 771 | PyObject_GetAttrString(PyObject *v, const char *name) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 772 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 773 | PyObject *w, *res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 774 | |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 775 | if (Py_Type(v)->tp_getattr != NULL) |
| 776 | return (*Py_Type(v)->tp_getattr)(v, (char*)name); |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 777 | w = PyUnicode_InternFromString(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 778 | if (w == NULL) |
| 779 | return NULL; |
| 780 | res = PyObject_GetAttr(v, w); |
| 781 | Py_XDECREF(w); |
| 782 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 786 | PyObject_HasAttrString(PyObject *v, const char *name) |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 787 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 788 | PyObject *res = PyObject_GetAttrString(v, name); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 789 | if (res != NULL) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 790 | Py_DECREF(res); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 791 | return 1; |
| 792 | } |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 793 | PyErr_Clear(); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 794 | return 0; |
| 795 | } |
| 796 | |
| 797 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 798 | PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 799 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 800 | PyObject *s; |
| 801 | int res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 802 | |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 803 | if (Py_Type(v)->tp_setattr != NULL) |
| 804 | return (*Py_Type(v)->tp_setattr)(v, (char*)name, w); |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 805 | s = PyUnicode_InternFromString(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 806 | if (s == NULL) |
| 807 | return -1; |
| 808 | res = PyObject_SetAttr(v, s, w); |
| 809 | Py_XDECREF(s); |
| 810 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 813 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 814 | PyObject_GetAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 815 | { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 816 | PyTypeObject *tp = Py_Type(v); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 817 | |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 818 | if (!PyUnicode_Check(name)) { |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 819 | PyErr_Format(PyExc_TypeError, |
| 820 | "attribute name must be string, not '%.200s'", |
| 821 | name->ob_type->tp_name); |
| 822 | return NULL; |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 823 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 824 | if (tp->tp_getattro != NULL) |
| 825 | return (*tp->tp_getattro)(v, name); |
| 826 | if (tp->tp_getattr != NULL) |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 827 | return (*tp->tp_getattr)(v, PyUnicode_AsString(name)); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 828 | PyErr_Format(PyExc_AttributeError, |
Walter Dörwald | d376dd9 | 2007-06-11 15:37:20 +0000 | [diff] [blame] | 829 | "'%.50s' object has no attribute '%U'", |
| 830 | tp->tp_name, name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 831 | return NULL; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 835 | PyObject_HasAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 836 | { |
| 837 | PyObject *res = PyObject_GetAttr(v, name); |
| 838 | if (res != NULL) { |
| 839 | Py_DECREF(res); |
| 840 | return 1; |
| 841 | } |
| 842 | PyErr_Clear(); |
| 843 | return 0; |
| 844 | } |
| 845 | |
| 846 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 847 | PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 848 | { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 849 | PyTypeObject *tp = Py_Type(v); |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 850 | int err; |
Marc-André Lemburg | e44e507 | 2000-09-18 16:20:57 +0000 | [diff] [blame] | 851 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 852 | if (!PyUnicode_Check(name)) { |
| 853 | PyErr_Format(PyExc_TypeError, |
| 854 | "attribute name must be string, not '%.200s'", |
| 855 | name->ob_type->tp_name); |
| 856 | return -1; |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 857 | } |
Guido van Rossum | f15a29f | 2007-05-04 00:41:39 +0000 | [diff] [blame] | 858 | Py_INCREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 859 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 860 | PyUnicode_InternInPlace(&name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 861 | if (tp->tp_setattro != NULL) { |
| 862 | err = (*tp->tp_setattro)(v, name, value); |
| 863 | Py_DECREF(name); |
| 864 | return err; |
Marc-André Lemburg | e44e507 | 2000-09-18 16:20:57 +0000 | [diff] [blame] | 865 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 866 | if (tp->tp_setattr != NULL) { |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 867 | err = (*tp->tp_setattr)(v, PyUnicode_AsString(name), value); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 868 | Py_DECREF(name); |
| 869 | return err; |
| 870 | } |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 871 | Py_DECREF(name); |
Guido van Rossum | f15a29f | 2007-05-04 00:41:39 +0000 | [diff] [blame] | 872 | assert(name->ob_refcnt >= 1); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 873 | if (tp->tp_getattr == NULL && tp->tp_getattro == NULL) |
| 874 | PyErr_Format(PyExc_TypeError, |
| 875 | "'%.100s' object has no attributes " |
Walter Dörwald | d376dd9 | 2007-06-11 15:37:20 +0000 | [diff] [blame] | 876 | "(%s .%U)", |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 877 | tp->tp_name, |
| 878 | value==NULL ? "del" : "assign to", |
Walter Dörwald | d376dd9 | 2007-06-11 15:37:20 +0000 | [diff] [blame] | 879 | name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 880 | else |
| 881 | PyErr_Format(PyExc_TypeError, |
| 882 | "'%.100s' object has only read-only attributes " |
Walter Dörwald | d376dd9 | 2007-06-11 15:37:20 +0000 | [diff] [blame] | 883 | "(%s .%U)", |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 884 | tp->tp_name, |
| 885 | value==NULL ? "del" : "assign to", |
Walter Dörwald | d376dd9 | 2007-06-11 15:37:20 +0000 | [diff] [blame] | 886 | name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 887 | return -1; |
| 888 | } |
| 889 | |
| 890 | /* Helper to get a pointer to an object's __dict__ slot, if any */ |
| 891 | |
| 892 | PyObject ** |
| 893 | _PyObject_GetDictPtr(PyObject *obj) |
| 894 | { |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 895 | Py_ssize_t dictoffset; |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 896 | PyTypeObject *tp = Py_Type(obj); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 897 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 898 | dictoffset = tp->tp_dictoffset; |
| 899 | if (dictoffset == 0) |
| 900 | return NULL; |
| 901 | if (dictoffset < 0) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 902 | Py_ssize_t tsize; |
Guido van Rossum | 2eb0b87 | 2002-03-01 22:24:49 +0000 | [diff] [blame] | 903 | size_t size; |
| 904 | |
| 905 | tsize = ((PyVarObject *)obj)->ob_size; |
| 906 | if (tsize < 0) |
| 907 | tsize = -tsize; |
| 908 | size = _PyObject_VAR_SIZE(tp, tsize); |
| 909 | |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 910 | dictoffset += (long)size; |
| 911 | assert(dictoffset > 0); |
| 912 | assert(dictoffset % SIZEOF_VOID_P == 0); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 913 | } |
| 914 | return (PyObject **) ((char *)obj + dictoffset); |
| 915 | } |
| 916 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 917 | PyObject * |
Raymond Hettinger | 1da1dbf | 2003-03-17 19:46:11 +0000 | [diff] [blame] | 918 | PyObject_SelfIter(PyObject *obj) |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 919 | { |
| 920 | Py_INCREF(obj); |
| 921 | return obj; |
| 922 | } |
| 923 | |
Michael W. Hudson | 1593f50 | 2004-09-14 17:09:47 +0000 | [diff] [blame] | 924 | /* Generic GetAttr functions - put these in your tp_[gs]etattro slot */ |
| 925 | |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 926 | PyObject * |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 927 | PyObject_GenericGetAttr(PyObject *obj, PyObject *name) |
| 928 | { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 929 | PyTypeObject *tp = Py_Type(obj); |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 930 | PyObject *descr = NULL; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 931 | PyObject *res = NULL; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 932 | descrgetfunc f; |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 933 | Py_ssize_t dictoffset; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 934 | PyObject **dictptr; |
| 935 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 936 | if (!PyUnicode_Check(name)){ |
| 937 | PyErr_Format(PyExc_TypeError, |
| 938 | "attribute name must be string, not '%.200s'", |
| 939 | name->ob_type->tp_name); |
| 940 | return NULL; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 941 | } |
| 942 | else |
| 943 | Py_INCREF(name); |
| 944 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 945 | if (tp->tp_dict == NULL) { |
Guido van Rossum | 528b7eb | 2001-08-07 17:24:28 +0000 | [diff] [blame] | 946 | if (PyType_Ready(tp) < 0) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 947 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 950 | /* Inline _PyType_Lookup */ |
| 951 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 952 | Py_ssize_t i, n; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 953 | PyObject *mro, *base, *dict; |
| 954 | |
| 955 | /* Look in tp_dict of types in MRO */ |
| 956 | mro = tp->tp_mro; |
| 957 | assert(mro != NULL); |
| 958 | assert(PyTuple_Check(mro)); |
| 959 | n = PyTuple_GET_SIZE(mro); |
| 960 | for (i = 0; i < n; i++) { |
| 961 | base = PyTuple_GET_ITEM(mro, i); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 962 | assert(PyType_Check(base)); |
| 963 | dict = ((PyTypeObject *)base)->tp_dict; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 964 | assert(dict && PyDict_Check(dict)); |
| 965 | descr = PyDict_GetItem(dict, name); |
| 966 | if (descr != NULL) |
| 967 | break; |
| 968 | } |
| 969 | } |
| 970 | |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 971 | Py_XINCREF(descr); |
| 972 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 973 | f = NULL; |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 974 | if (descr != NULL) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 975 | f = descr->ob_type->tp_descr_get; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 976 | if (f != NULL && PyDescr_IsData(descr)) { |
| 977 | res = f(descr, obj, (PyObject *)obj->ob_type); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 978 | Py_DECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 979 | goto done; |
| 980 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 981 | } |
| 982 | |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 983 | /* Inline _PyObject_GetDictPtr */ |
| 984 | dictoffset = tp->tp_dictoffset; |
| 985 | if (dictoffset != 0) { |
| 986 | PyObject *dict; |
| 987 | if (dictoffset < 0) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 988 | Py_ssize_t tsize; |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 989 | size_t size; |
| 990 | |
| 991 | tsize = ((PyVarObject *)obj)->ob_size; |
| 992 | if (tsize < 0) |
| 993 | tsize = -tsize; |
| 994 | size = _PyObject_VAR_SIZE(tp, tsize); |
| 995 | |
| 996 | dictoffset += (long)size; |
| 997 | assert(dictoffset > 0); |
| 998 | assert(dictoffset % SIZEOF_VOID_P == 0); |
| 999 | } |
| 1000 | dictptr = (PyObject **) ((char *)obj + dictoffset); |
| 1001 | dict = *dictptr; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1002 | if (dict != NULL) { |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1003 | res = PyDict_GetItem(dict, name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1004 | if (res != NULL) { |
| 1005 | Py_INCREF(res); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1006 | Py_XDECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1007 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1008 | } |
| 1009 | } |
| 1010 | } |
| 1011 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1012 | if (f != NULL) { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1013 | res = f(descr, obj, (PyObject *)Py_Type(obj)); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1014 | Py_DECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1015 | goto done; |
| 1016 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1017 | |
| 1018 | if (descr != NULL) { |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1019 | res = descr; |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1020 | /* descr was already increfed above */ |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1021 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1022 | } |
| 1023 | |
| 1024 | PyErr_Format(PyExc_AttributeError, |
| 1025 | "'%.50s' object has no attribute '%.400s'", |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 1026 | tp->tp_name, PyUnicode_AsString(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1027 | done: |
| 1028 | Py_DECREF(name); |
| 1029 | return res; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1030 | } |
| 1031 | |
| 1032 | int |
| 1033 | PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value) |
| 1034 | { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1035 | PyTypeObject *tp = Py_Type(obj); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1036 | PyObject *descr; |
| 1037 | descrsetfunc f; |
| 1038 | PyObject **dictptr; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1039 | int res = -1; |
| 1040 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 1041 | if (!PyUnicode_Check(name)){ |
| 1042 | PyErr_Format(PyExc_TypeError, |
| 1043 | "attribute name must be string, not '%.200s'", |
| 1044 | name->ob_type->tp_name); |
| 1045 | return -1; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1046 | } |
| 1047 | else |
| 1048 | Py_INCREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1049 | |
| 1050 | if (tp->tp_dict == NULL) { |
Guido van Rossum | 528b7eb | 2001-08-07 17:24:28 +0000 | [diff] [blame] | 1051 | if (PyType_Ready(tp) < 0) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1052 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | descr = _PyType_Lookup(tp, name); |
| 1056 | f = NULL; |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 1057 | if (descr != NULL) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1058 | f = descr->ob_type->tp_descr_set; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1059 | if (f != NULL && PyDescr_IsData(descr)) { |
| 1060 | res = f(descr, obj, value); |
| 1061 | goto done; |
| 1062 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | dictptr = _PyObject_GetDictPtr(obj); |
| 1066 | if (dictptr != NULL) { |
| 1067 | PyObject *dict = *dictptr; |
| 1068 | if (dict == NULL && value != NULL) { |
| 1069 | dict = PyDict_New(); |
| 1070 | if (dict == NULL) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1071 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1072 | *dictptr = dict; |
| 1073 | } |
| 1074 | if (dict != NULL) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1075 | if (value == NULL) |
| 1076 | res = PyDict_DelItem(dict, name); |
| 1077 | else |
| 1078 | res = PyDict_SetItem(dict, name, value); |
| 1079 | if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) |
| 1080 | PyErr_SetObject(PyExc_AttributeError, name); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1081 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1082 | } |
| 1083 | } |
| 1084 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1085 | if (f != NULL) { |
| 1086 | res = f(descr, obj, value); |
| 1087 | goto done; |
| 1088 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1089 | |
| 1090 | if (descr == NULL) { |
| 1091 | PyErr_Format(PyExc_AttributeError, |
Walter Dörwald | d376dd9 | 2007-06-11 15:37:20 +0000 | [diff] [blame] | 1092 | "'%.100s' object has no attribute '%U'", |
| 1093 | tp->tp_name, name); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1094 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | PyErr_Format(PyExc_AttributeError, |
Walter Dörwald | d376dd9 | 2007-06-11 15:37:20 +0000 | [diff] [blame] | 1098 | "'%.50s' object attribute '%U' is read-only", |
| 1099 | tp->tp_name, name); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1100 | done: |
| 1101 | Py_DECREF(name); |
| 1102 | return res; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1103 | } |
| 1104 | |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1105 | /* Test a value used as condition, e.g., in a for or if statement. |
| 1106 | Return -1 if an error occurred */ |
| 1107 | |
| 1108 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1109 | PyObject_IsTrue(PyObject *v) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1110 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1111 | Py_ssize_t res; |
Guido van Rossum | 6248f44 | 2002-08-24 06:31:34 +0000 | [diff] [blame] | 1112 | if (v == Py_True) |
| 1113 | return 1; |
| 1114 | if (v == Py_False) |
| 1115 | return 0; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1116 | if (v == Py_None) |
Neal Norwitz | 51290d3 | 2002-06-13 21:32:44 +0000 | [diff] [blame] | 1117 | return 0; |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1118 | else if (v->ob_type->tp_as_number != NULL && |
Jack Diederich | 4dafcc4 | 2006-11-28 19:15:13 +0000 | [diff] [blame] | 1119 | v->ob_type->tp_as_number->nb_bool != NULL) |
| 1120 | res = (*v->ob_type->tp_as_number->nb_bool)(v); |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1121 | else if (v->ob_type->tp_as_mapping != NULL && |
| 1122 | v->ob_type->tp_as_mapping->mp_length != NULL) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1123 | res = (*v->ob_type->tp_as_mapping->mp_length)(v); |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1124 | else if (v->ob_type->tp_as_sequence != NULL && |
| 1125 | v->ob_type->tp_as_sequence->sq_length != NULL) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1126 | res = (*v->ob_type->tp_as_sequence->sq_length)(v); |
| 1127 | else |
Neal Norwitz | 51290d3 | 2002-06-13 21:32:44 +0000 | [diff] [blame] | 1128 | return 1; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1129 | /* if it is negative, it should be either -1 or -2 */ |
| 1130 | 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] | 1131 | } |
| 1132 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1133 | /* equivalent of 'not v' |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1134 | Return -1 if an error occurred */ |
| 1135 | |
| 1136 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1137 | PyObject_Not(PyObject *v) |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1138 | { |
| 1139 | int res; |
| 1140 | res = PyObject_IsTrue(v); |
| 1141 | if (res < 0) |
| 1142 | return res; |
| 1143 | return res == 0; |
| 1144 | } |
| 1145 | |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1146 | /* Test whether an object can be called */ |
| 1147 | |
| 1148 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1149 | PyCallable_Check(PyObject *x) |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1150 | { |
| 1151 | if (x == NULL) |
| 1152 | return 0; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 1153 | return x->ob_type->tp_call != NULL; |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1156 | /* ------------------------- PyObject_Dir() helpers ------------------------- */ |
| 1157 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1158 | /* Helper for PyObject_Dir. |
| 1159 | Merge the __dict__ of aclass into dict, and recursively also all |
| 1160 | the __dict__s of aclass's base classes. The order of merging isn't |
| 1161 | defined, as it's expected that only the final set of dict keys is |
| 1162 | interesting. |
| 1163 | Return 0 on success, -1 on error. |
| 1164 | */ |
| 1165 | |
| 1166 | static int |
| 1167 | merge_class_dict(PyObject* dict, PyObject* aclass) |
| 1168 | { |
| 1169 | PyObject *classdict; |
| 1170 | PyObject *bases; |
| 1171 | |
| 1172 | assert(PyDict_Check(dict)); |
| 1173 | assert(aclass); |
| 1174 | |
| 1175 | /* Merge in the type's dict (if any). */ |
| 1176 | classdict = PyObject_GetAttrString(aclass, "__dict__"); |
| 1177 | if (classdict == NULL) |
| 1178 | PyErr_Clear(); |
| 1179 | else { |
| 1180 | int status = PyDict_Update(dict, classdict); |
| 1181 | Py_DECREF(classdict); |
| 1182 | if (status < 0) |
| 1183 | return -1; |
| 1184 | } |
| 1185 | |
| 1186 | /* Recursively merge in the base types' (if any) dicts. */ |
| 1187 | bases = PyObject_GetAttrString(aclass, "__bases__"); |
Tim Peters | bc7e863 | 2001-09-16 20:33:22 +0000 | [diff] [blame] | 1188 | if (bases == NULL) |
| 1189 | PyErr_Clear(); |
| 1190 | else { |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1191 | /* We have no guarantee that bases is a real tuple */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1192 | Py_ssize_t i, n; |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1193 | n = PySequence_Size(bases); /* This better be right */ |
| 1194 | if (n < 0) |
| 1195 | PyErr_Clear(); |
| 1196 | else { |
| 1197 | for (i = 0; i < n; i++) { |
Tim Peters | 18e7083 | 2003-02-05 19:35:19 +0000 | [diff] [blame] | 1198 | int status; |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1199 | PyObject *base = PySequence_GetItem(bases, i); |
| 1200 | if (base == NULL) { |
| 1201 | Py_DECREF(bases); |
| 1202 | return -1; |
| 1203 | } |
Tim Peters | 18e7083 | 2003-02-05 19:35:19 +0000 | [diff] [blame] | 1204 | status = merge_class_dict(dict, base); |
| 1205 | Py_DECREF(base); |
| 1206 | if (status < 0) { |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1207 | Py_DECREF(bases); |
| 1208 | return -1; |
| 1209 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1210 | } |
| 1211 | } |
| 1212 | Py_DECREF(bases); |
| 1213 | } |
| 1214 | return 0; |
| 1215 | } |
| 1216 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1217 | /* Helper for PyObject_Dir without arguments: returns the local scope. */ |
| 1218 | static PyObject * |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1219 | _dir_locals(void) |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1220 | { |
Georg Brandl | ed3b838 | 2007-03-12 13:15:14 +0000 | [diff] [blame] | 1221 | PyObject *names; |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1222 | PyObject *locals = PyEval_GetLocals(); |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1223 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1224 | if (locals == NULL) { |
| 1225 | PyErr_SetString(PyExc_SystemError, "frame does not exist"); |
| 1226 | return NULL; |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1227 | } |
| 1228 | |
Georg Brandl | ed3b838 | 2007-03-12 13:15:14 +0000 | [diff] [blame] | 1229 | names = PyMapping_Keys(locals); |
| 1230 | if (!names) |
| 1231 | return NULL; |
| 1232 | if (!PyList_Check(names)) { |
| 1233 | PyErr_Format(PyExc_TypeError, |
| 1234 | "dir(): expected keys() of locals to be a list, " |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1235 | "not '%.200s'", Py_Type(names)->tp_name); |
Georg Brandl | ed3b838 | 2007-03-12 13:15:14 +0000 | [diff] [blame] | 1236 | Py_DECREF(names); |
| 1237 | return NULL; |
| 1238 | } |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1239 | /* the locals don't need to be DECREF'd */ |
Georg Brandl | ed3b838 | 2007-03-12 13:15:14 +0000 | [diff] [blame] | 1240 | return names; |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1241 | } |
| 1242 | |
| 1243 | /* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__. |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1244 | We deliberately don't suck up its __class__, as methods belonging to the |
| 1245 | metaclass would probably be more confusing than helpful. |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1246 | */ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1247 | static PyObject * |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1248 | _specialized_dir_type(PyObject *obj) |
| 1249 | { |
| 1250 | PyObject *result = NULL; |
| 1251 | PyObject *dict = PyDict_New(); |
| 1252 | |
| 1253 | if (dict != NULL && merge_class_dict(dict, obj) == 0) |
| 1254 | result = PyDict_Keys(dict); |
| 1255 | |
| 1256 | Py_XDECREF(dict); |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1257 | return result; |
| 1258 | } |
| 1259 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1260 | /* Helper for PyObject_Dir of module objects: returns the module's __dict__. */ |
| 1261 | static PyObject * |
| 1262 | _specialized_dir_module(PyObject *obj) |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1263 | { |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1264 | PyObject *result = NULL; |
| 1265 | PyObject *dict = PyObject_GetAttrString(obj, "__dict__"); |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1266 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1267 | if (dict != NULL) { |
| 1268 | if (PyDict_Check(dict)) |
| 1269 | result = PyDict_Keys(dict); |
| 1270 | else { |
| 1271 | PyErr_Format(PyExc_TypeError, |
| 1272 | "%.200s.__dict__ is not a dictionary", |
| 1273 | PyModule_GetName(obj)); |
Guido van Rossum | 8dbd3d8 | 2001-09-10 18:27:43 +0000 | [diff] [blame] | 1274 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1275 | } |
| 1276 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1277 | Py_XDECREF(dict); |
| 1278 | return result; |
| 1279 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1280 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1281 | /* Helper for PyObject_Dir of generic objects: returns __dict__, __class__, |
| 1282 | and recursively up the __class__.__bases__ chain. |
| 1283 | */ |
| 1284 | static PyObject * |
| 1285 | _generic_dir(PyObject *obj) |
| 1286 | { |
| 1287 | PyObject *result = NULL; |
| 1288 | PyObject *dict = NULL; |
| 1289 | PyObject *itsclass = NULL; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1290 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1291 | /* Get __dict__ (which may or may not be a real dict...) */ |
| 1292 | dict = PyObject_GetAttrString(obj, "__dict__"); |
| 1293 | if (dict == NULL) { |
| 1294 | PyErr_Clear(); |
| 1295 | dict = PyDict_New(); |
| 1296 | } |
| 1297 | else if (!PyDict_Check(dict)) { |
| 1298 | Py_DECREF(dict); |
| 1299 | dict = PyDict_New(); |
| 1300 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1301 | else { |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1302 | /* Copy __dict__ to avoid mutating it. */ |
| 1303 | PyObject *temp = PyDict_Copy(dict); |
| 1304 | Py_DECREF(dict); |
| 1305 | dict = temp; |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1306 | } |
| 1307 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1308 | if (dict == NULL) |
Raymond Hettinger | 2a7dede | 2004-08-07 04:55:30 +0000 | [diff] [blame] | 1309 | goto error; |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1310 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1311 | /* Merge in attrs reachable from its class. */ |
| 1312 | itsclass = PyObject_GetAttrString(obj, "__class__"); |
| 1313 | if (itsclass == NULL) |
| 1314 | /* XXX(tomer): Perhaps fall back to obj->ob_type if no |
| 1315 | __class__ exists? */ |
| 1316 | PyErr_Clear(); |
| 1317 | else { |
| 1318 | if (merge_class_dict(dict, itsclass) != 0) |
| 1319 | goto error; |
| 1320 | } |
| 1321 | |
| 1322 | result = PyDict_Keys(dict); |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1323 | /* fall through */ |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1324 | error: |
| 1325 | Py_XDECREF(itsclass); |
| 1326 | Py_XDECREF(dict); |
| 1327 | return result; |
| 1328 | } |
| 1329 | |
| 1330 | /* Helper for PyObject_Dir: object introspection. |
| 1331 | This calls one of the above specialized versions if no __dir__ method |
| 1332 | exists. */ |
| 1333 | static PyObject * |
| 1334 | _dir_object(PyObject *obj) |
| 1335 | { |
| 1336 | PyObject * result = NULL; |
| 1337 | PyObject * dirfunc = PyObject_GetAttrString((PyObject*)obj->ob_type, |
| 1338 | "__dir__"); |
| 1339 | |
| 1340 | assert(obj); |
| 1341 | if (dirfunc == NULL) { |
| 1342 | /* use default implementation */ |
| 1343 | PyErr_Clear(); |
| 1344 | if (PyModule_Check(obj)) |
| 1345 | result = _specialized_dir_module(obj); |
| 1346 | else if (PyType_Check(obj)) |
| 1347 | result = _specialized_dir_type(obj); |
| 1348 | else |
| 1349 | result = _generic_dir(obj); |
| 1350 | } |
| 1351 | else { |
| 1352 | /* use __dir__ */ |
| 1353 | result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL); |
| 1354 | Py_DECREF(dirfunc); |
| 1355 | if (result == NULL) |
| 1356 | return NULL; |
| 1357 | |
| 1358 | /* result must be a list */ |
| 1359 | /* XXX(gbrandl): could also check if all items are strings */ |
| 1360 | if (!PyList_Check(result)) { |
| 1361 | PyErr_Format(PyExc_TypeError, |
| 1362 | "__dir__() must return a list, not %.200s", |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1363 | Py_Type(result)->tp_name); |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1364 | Py_DECREF(result); |
| 1365 | result = NULL; |
| 1366 | } |
| 1367 | } |
| 1368 | |
| 1369 | return result; |
| 1370 | } |
| 1371 | |
| 1372 | /* Implementation of dir() -- if obj is NULL, returns the names in the current |
| 1373 | (local) scope. Otherwise, performs introspection of the object: returns a |
| 1374 | sorted list of attribute names (supposedly) accessible from the object |
| 1375 | */ |
| 1376 | PyObject * |
| 1377 | PyObject_Dir(PyObject *obj) |
| 1378 | { |
| 1379 | PyObject * result; |
| 1380 | |
| 1381 | if (obj == NULL) |
| 1382 | /* no object -- introspect the locals */ |
| 1383 | result = _dir_locals(); |
| 1384 | else |
| 1385 | /* object -- introspect the object */ |
| 1386 | result = _dir_object(obj); |
| 1387 | |
| 1388 | assert(result == NULL || PyList_Check(result)); |
| 1389 | |
| 1390 | if (result != NULL && PyList_Sort(result) != 0) { |
| 1391 | /* sorting the list failed */ |
| 1392 | Py_DECREF(result); |
| 1393 | result = NULL; |
| 1394 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 1395 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1396 | return result; |
| 1397 | } |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1398 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1399 | /* |
| 1400 | NoObject is usable as a non-NULL undefined value, used by the macro None. |
| 1401 | 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] | 1402 | so there is exactly one (which is indestructible, by the way). |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1403 | (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] | 1404 | */ |
| 1405 | |
Guido van Rossum | 0c182a1 | 1992-03-27 17:26:13 +0000 | [diff] [blame] | 1406 | /* ARGSUSED */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1407 | static PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1408 | none_repr(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1409 | { |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 1410 | return PyUnicode_FromString("None"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1411 | } |
| 1412 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1413 | /* ARGUSED */ |
| 1414 | static void |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1415 | none_dealloc(PyObject* ignore) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1416 | { |
| 1417 | /* This should never get called, but we also don't want to SEGV if |
| 1418 | * we accidently decref None out of existance. |
| 1419 | */ |
Martin v. Löwis | 3f19b10 | 2002-08-07 16:21:51 +0000 | [diff] [blame] | 1420 | Py_FatalError("deallocating None"); |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1421 | } |
| 1422 | |
| 1423 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1424 | static PyTypeObject PyNone_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1425 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1426 | "NoneType", |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1427 | 0, |
| 1428 | 0, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1429 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 1430 | 0, /*tp_print*/ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1431 | 0, /*tp_getattr*/ |
| 1432 | 0, /*tp_setattr*/ |
| 1433 | 0, /*tp_compare*/ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1434 | none_repr, /*tp_repr*/ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1435 | 0, /*tp_as_number*/ |
| 1436 | 0, /*tp_as_sequence*/ |
| 1437 | 0, /*tp_as_mapping*/ |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1438 | 0, /*tp_hash */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1439 | }; |
| 1440 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1441 | PyObject _Py_NoneStruct = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1442 | _PyObject_EXTRA_INIT |
| 1443 | 1, &PyNone_Type |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1444 | }; |
| 1445 | |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1446 | /* NotImplemented is an object that can be used to signal that an |
| 1447 | operation is not implemented for the given type combination. */ |
| 1448 | |
| 1449 | static PyObject * |
| 1450 | NotImplemented_repr(PyObject *op) |
| 1451 | { |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 1452 | return PyUnicode_FromString("NotImplemented"); |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1453 | } |
| 1454 | |
| 1455 | static PyTypeObject PyNotImplemented_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1456 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1457 | "NotImplementedType", |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1458 | 0, |
| 1459 | 0, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1460 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1461 | 0, /*tp_print*/ |
| 1462 | 0, /*tp_getattr*/ |
| 1463 | 0, /*tp_setattr*/ |
| 1464 | 0, /*tp_compare*/ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1465 | NotImplemented_repr, /*tp_repr*/ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1466 | 0, /*tp_as_number*/ |
| 1467 | 0, /*tp_as_sequence*/ |
| 1468 | 0, /*tp_as_mapping*/ |
| 1469 | 0, /*tp_hash */ |
| 1470 | }; |
| 1471 | |
| 1472 | PyObject _Py_NotImplementedStruct = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1473 | _PyObject_EXTRA_INIT |
| 1474 | 1, &PyNotImplemented_Type |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1475 | }; |
| 1476 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1477 | void |
| 1478 | _Py_ReadyTypes(void) |
| 1479 | { |
| 1480 | if (PyType_Ready(&PyType_Type) < 0) |
| 1481 | Py_FatalError("Can't initialize 'type'"); |
| 1482 | |
Fred Drake | 0a4dd39 | 2004-07-02 18:57:45 +0000 | [diff] [blame] | 1483 | if (PyType_Ready(&_PyWeakref_RefType) < 0) |
| 1484 | Py_FatalError("Can't initialize 'weakref'"); |
| 1485 | |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 1486 | if (PyType_Ready(&PyBool_Type) < 0) |
| 1487 | Py_FatalError("Can't initialize 'bool'"); |
| 1488 | |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 1489 | if (PyType_Ready(&PyBytes_Type) < 0) |
| 1490 | Py_FatalError("Can't initialize 'bytes'"); |
| 1491 | |
Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 1492 | if (PyType_Ready(&PyString_Type) < 0) |
| 1493 | Py_FatalError("Can't initialize 'str'"); |
| 1494 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1495 | if (PyType_Ready(&PyList_Type) < 0) |
| 1496 | Py_FatalError("Can't initialize 'list'"); |
| 1497 | |
| 1498 | if (PyType_Ready(&PyNone_Type) < 0) |
| 1499 | Py_FatalError("Can't initialize type(None)"); |
| 1500 | |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 1501 | if (PyType_Ready(Py_Ellipsis->ob_type) < 0) |
| 1502 | Py_FatalError("Can't initialize type(Ellipsis)"); |
| 1503 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1504 | if (PyType_Ready(&PyNotImplemented_Type) < 0) |
| 1505 | Py_FatalError("Can't initialize type(NotImplemented)"); |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 1506 | |
| 1507 | if (PyType_Ready(&PyCode_Type) < 0) |
| 1508 | Py_FatalError("Can't initialize 'code'"); |
Guido van Rossum | 826d897 | 2007-10-30 18:34:07 +0000 | [diff] [blame] | 1509 | |
| 1510 | if (PyType_Ready(&PyStdPrinter_Type) < 0) |
| 1511 | Py_FatalError("Can't initialize StdPrinter"); |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1512 | } |
| 1513 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1514 | |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 1515 | #ifdef Py_TRACE_REFS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1516 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1517 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1518 | _Py_NewReference(PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1519 | { |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1520 | _Py_INC_REFTOTAL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1521 | op->ob_refcnt = 1; |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 1522 | _Py_AddToAllObjects(op, 1); |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1523 | _Py_INC_TPALLOCS(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1524 | } |
| 1525 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1526 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1527 | _Py_ForgetReference(register PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1528 | { |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 1529 | #ifdef SLOW_UNREF_CHECK |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1530 | register PyObject *p; |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 1531 | #endif |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1532 | if (op->ob_refcnt < 0) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1533 | Py_FatalError("UNREF negative refcnt"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1534 | if (op == &refchain || |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1535 | 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] | 1536 | Py_FatalError("UNREF invalid object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1537 | #ifdef SLOW_UNREF_CHECK |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1538 | for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) { |
| 1539 | if (p == op) |
| 1540 | break; |
| 1541 | } |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1542 | if (p == &refchain) /* Not found */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1543 | Py_FatalError("UNREF unknown object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1544 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1545 | op->_ob_next->_ob_prev = op->_ob_prev; |
| 1546 | op->_ob_prev->_ob_next = op->_ob_next; |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1547 | op->_ob_next = op->_ob_prev = NULL; |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1548 | _Py_INC_TPFREES(op); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1549 | } |
| 1550 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1551 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1552 | _Py_Dealloc(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1553 | { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1554 | destructor dealloc = Py_Type(op)->tp_dealloc; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1555 | _Py_ForgetReference(op); |
Guido van Rossum | 9776adf | 1994-09-07 14:36:45 +0000 | [diff] [blame] | 1556 | (*dealloc)(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1557 | } |
| 1558 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1559 | /* Print all live objects. Because PyObject_Print is called, the |
| 1560 | * interpreter must be in a healthy state. |
| 1561 | */ |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1562 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1563 | _Py_PrintReferences(FILE *fp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1564 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1565 | PyObject *op; |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1566 | fprintf(fp, "Remaining objects:\n"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1567 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1568 | 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] | 1569 | if (PyObject_Print(op, fp, 0) != 0) |
| 1570 | PyErr_Clear(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1571 | putc('\n', fp); |
| 1572 | } |
| 1573 | } |
| 1574 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1575 | /* Print the addresses of all live objects. Unlike _Py_PrintReferences, this |
| 1576 | * doesn't make any calls to the Python C API, so is always safe to call. |
| 1577 | */ |
| 1578 | void |
| 1579 | _Py_PrintReferenceAddresses(FILE *fp) |
| 1580 | { |
| 1581 | PyObject *op; |
| 1582 | fprintf(fp, "Remaining object addresses:\n"); |
| 1583 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1584 | fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op, |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1585 | op->ob_refcnt, Py_Type(op)->tp_name); |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1586 | } |
| 1587 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1588 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1589 | _Py_GetObjects(PyObject *self, PyObject *args) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1590 | { |
| 1591 | int i, n; |
| 1592 | PyObject *t = NULL; |
| 1593 | PyObject *res, *op; |
| 1594 | |
| 1595 | if (!PyArg_ParseTuple(args, "i|O", &n, &t)) |
| 1596 | return NULL; |
| 1597 | op = refchain._ob_next; |
| 1598 | res = PyList_New(0); |
| 1599 | if (res == NULL) |
| 1600 | return NULL; |
| 1601 | for (i = 0; (n == 0 || i < n) && op != &refchain; i++) { |
| 1602 | while (op == self || op == args || op == res || op == t || |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1603 | (t != NULL && Py_Type(op) != (PyTypeObject *) t)) { |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1604 | op = op->_ob_next; |
| 1605 | if (op == &refchain) |
| 1606 | return res; |
| 1607 | } |
| 1608 | if (PyList_Append(res, op) < 0) { |
| 1609 | Py_DECREF(res); |
| 1610 | return NULL; |
| 1611 | } |
| 1612 | op = op->_ob_next; |
| 1613 | } |
| 1614 | return res; |
| 1615 | } |
| 1616 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1617 | #endif |
Guido van Rossum | 97ead3f | 1996-01-12 01:24:09 +0000 | [diff] [blame] | 1618 | |
| 1619 | |
| 1620 | /* Hack to force loading of cobject.o */ |
Guido van Rossum | da9c271 | 1996-12-05 21:58:58 +0000 | [diff] [blame] | 1621 | PyTypeObject *_Py_cobject_hack = &PyCObject_Type; |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 1622 | |
| 1623 | |
| 1624 | /* Hack to force loading of abstract.o */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1625 | Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size; |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1626 | |
| 1627 | |
Andrew M. Kuchling | 1582a3a | 2000-08-16 12:27:23 +0000 | [diff] [blame] | 1628 | /* Python's malloc wrappers (see pymem.h) */ |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1629 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 1630 | void * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1631 | PyMem_Malloc(size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1632 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 1633 | return PyMem_MALLOC(nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1634 | } |
| 1635 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 1636 | void * |
| 1637 | PyMem_Realloc(void *p, size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1638 | { |
Tim Peters | af3e8de | 2002-04-12 07:22:56 +0000 | [diff] [blame] | 1639 | return PyMem_REALLOC(p, nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1640 | } |
| 1641 | |
| 1642 | void |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 1643 | PyMem_Free(void *p) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1644 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 1645 | PyMem_FREE(p); |
| 1646 | } |
| 1647 | |
| 1648 | |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1649 | /* These methods are used to control infinite recursion in repr, str, print, |
| 1650 | etc. Container objects that may recursively contain themselves, |
| 1651 | e.g. builtin dictionaries and lists, should used Py_ReprEnter() and |
| 1652 | Py_ReprLeave() to avoid infinite recursion. |
| 1653 | |
| 1654 | Py_ReprEnter() returns 0 the first time it is called for a particular |
| 1655 | object and 1 every time thereafter. It returns -1 if an exception |
| 1656 | occurred. Py_ReprLeave() has no return value. |
| 1657 | |
| 1658 | See dictobject.c and listobject.c for examples of use. |
| 1659 | */ |
| 1660 | |
| 1661 | #define KEY "Py_Repr" |
| 1662 | |
| 1663 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1664 | Py_ReprEnter(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1665 | { |
| 1666 | PyObject *dict; |
| 1667 | PyObject *list; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1668 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1669 | |
| 1670 | dict = PyThreadState_GetDict(); |
| 1671 | if (dict == NULL) |
Guido van Rossum | 0fc8f00 | 2003-04-15 15:12:39 +0000 | [diff] [blame] | 1672 | return 0; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1673 | list = PyDict_GetItemString(dict, KEY); |
| 1674 | if (list == NULL) { |
| 1675 | list = PyList_New(0); |
| 1676 | if (list == NULL) |
| 1677 | return -1; |
| 1678 | if (PyDict_SetItemString(dict, KEY, list) < 0) |
| 1679 | return -1; |
| 1680 | Py_DECREF(list); |
| 1681 | } |
| 1682 | i = PyList_GET_SIZE(list); |
| 1683 | while (--i >= 0) { |
| 1684 | if (PyList_GET_ITEM(list, i) == obj) |
| 1685 | return 1; |
| 1686 | } |
| 1687 | PyList_Append(list, obj); |
| 1688 | return 0; |
| 1689 | } |
| 1690 | |
| 1691 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1692 | Py_ReprLeave(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1693 | { |
| 1694 | PyObject *dict; |
| 1695 | PyObject *list; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1696 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1697 | |
| 1698 | dict = PyThreadState_GetDict(); |
Guido van Rossum | eb90946 | 1998-04-11 15:17:34 +0000 | [diff] [blame] | 1699 | if (dict == NULL) |
| 1700 | return; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1701 | list = PyDict_GetItemString(dict, KEY); |
Guido van Rossum | eb90946 | 1998-04-11 15:17:34 +0000 | [diff] [blame] | 1702 | if (list == NULL || !PyList_Check(list)) |
| 1703 | return; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1704 | i = PyList_GET_SIZE(list); |
| 1705 | /* Count backwards because we always expect obj to be list[-1] */ |
| 1706 | while (--i >= 0) { |
| 1707 | if (PyList_GET_ITEM(list, i) == obj) { |
| 1708 | PyList_SetSlice(list, i, i + 1, NULL); |
| 1709 | break; |
| 1710 | } |
| 1711 | } |
| 1712 | } |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1713 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1714 | /* Trashcan support. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1715 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1716 | /* Current call-stack depth of tp_dealloc calls. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1717 | int _PyTrash_delete_nesting = 0; |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 1718 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1719 | /* List of objects that still need to be cleaned up, singly linked via their |
| 1720 | * gc headers' gc_prev pointers. |
| 1721 | */ |
| 1722 | PyObject *_PyTrash_delete_later = NULL; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1723 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1724 | /* Add op to the _PyTrash_delete_later list. Called when the current |
| 1725 | * call-stack depth gets large. op must be a currently untracked gc'ed |
| 1726 | * object, with refcount 0. Py_DECREF must already have been called on it. |
| 1727 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1728 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1729 | _PyTrash_deposit_object(PyObject *op) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1730 | { |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1731 | assert(PyObject_IS_GC(op)); |
| 1732 | assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); |
| 1733 | assert(op->ob_refcnt == 0); |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1734 | _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] | 1735 | _PyTrash_delete_later = op; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1736 | } |
| 1737 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1738 | /* Dealloccate all the objects in the _PyTrash_delete_later list. Called when |
| 1739 | * the call-stack unwinds again. |
| 1740 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1741 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1742 | _PyTrash_destroy_chain(void) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1743 | { |
| 1744 | while (_PyTrash_delete_later) { |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1745 | PyObject *op = _PyTrash_delete_later; |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 1746 | destructor dealloc = Py_Type(op)->tp_dealloc; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1747 | |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1748 | _PyTrash_delete_later = |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1749 | (PyObject*) _Py_AS_GC(op)->gc.gc_prev; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1750 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1751 | /* Call the deallocator directly. This used to try to |
| 1752 | * fool Py_DECREF into calling it indirectly, but |
| 1753 | * Py_DECREF was already called on this object, and in |
| 1754 | * assorted non-release builds calling Py_DECREF again ends |
| 1755 | * up distorting allocation statistics. |
| 1756 | */ |
| 1757 | assert(op->ob_refcnt == 0); |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1758 | ++_PyTrash_delete_nesting; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1759 | (*dealloc)(op); |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1760 | --_PyTrash_delete_nesting; |
| 1761 | } |
| 1762 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1763 | |
| 1764 | #ifdef __cplusplus |
| 1765 | } |
| 1766 | #endif |