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