blob: 8de67238154e44612c03cd806a06225b5fda1510 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Generic object operations; and implementation of None (NoObject) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Anthony Baxterac6bd462006-04-13 02:06:09 +00006#ifdef __cplusplus
7extern "C" {
8#endif
9
Tim Peters34592512002-07-11 06:23:50 +000010#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000011Py_ssize_t _Py_RefTotal;
Armin Rigoe1709372006-04-12 17:06:05 +000012
13Py_ssize_t
14_Py_GetRefTotal(void)
15{
16 PyObject *o;
17 Py_ssize_t total = _Py_RefTotal;
18 /* ignore the references to the dummy object of the dicts and sets
19 because they are not reliable and not useful (now that the
20 hash table code is well-tested) */
21 o = _PyDict_Dummy();
22 if (o != NULL)
23 total -= o->ob_refcnt;
24 o = _PySet_Dummy();
25 if (o != NULL)
26 total -= o->ob_refcnt;
27 return total;
28}
29#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000030
Mark Hammonda2905272002-07-29 13:42:14 +000031int Py_DivisionWarningFlag;
Neal Norwitz8b2bfbc2007-05-23 06:35:32 +000032int Py_Py3kWarningFlag;
Guido van Rossum393661d2001-08-31 17:40:15 +000033
Guido van Rossum3f5da241990-12-20 15:06:42 +000034/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
35 These are used by the individual routines for object creation.
36 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000037
Tim Peters78be7992003-03-23 02:51:01 +000038#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000039/* Head of circular doubly-linked list of all objects. These are linked
40 * together via the _ob_prev and _ob_next members of a PyObject, which
41 * exist only in a Py_TRACE_REFS build.
42 */
Tim Peters78be7992003-03-23 02:51:01 +000043static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000044
Tim Peters7571a0f2003-03-23 17:52:28 +000045/* Insert op at the front of the list of all objects. If force is true,
46 * op is added even if _ob_prev and _ob_next are non-NULL already. If
47 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
48 * force should be true if and only if op points to freshly allocated,
49 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000050 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000051 * Note that objects are normally added to the list via _Py_NewReference,
52 * which is called by PyObject_Init. Not all objects are initialized that
53 * way, though; exceptions include statically allocated type objects, and
54 * statically allocated singletons (like Py_True and Py_None).
55 */
Tim Peters36eb4df2003-03-23 03:33:13 +000056void
Tim Peters7571a0f2003-03-23 17:52:28 +000057_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000058{
Tim Peters7571a0f2003-03-23 17:52:28 +000059#ifdef Py_DEBUG
60 if (!force) {
61 /* If it's initialized memory, op must be in or out of
62 * the list unambiguously.
63 */
64 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
65 }
Tim Peters78be7992003-03-23 02:51:01 +000066#endif
Tim Peters7571a0f2003-03-23 17:52:28 +000067 if (force || op->_ob_prev == NULL) {
68 op->_ob_next = refchain._ob_next;
69 op->_ob_prev = &refchain;
70 refchain._ob_next->_ob_prev = op;
71 refchain._ob_next = op;
72 }
73}
74#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000075
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000076#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000077static PyTypeObject *type_list;
Andrew M. Kuchling2060d1b2006-04-18 11:49:53 +000078/* All types are added to type_list, at least when
Martin v. Löwis45294a92006-04-18 06:24:08 +000079 they get one object created. That makes them
80 immortal, which unfortunately contributes to
81 garbage itself. If unlist_types_without_objects
82 is set, they will be removed from the type_list
83 once the last object is deallocated. */
84int unlist_types_without_objects;
Sjoerd Mullender842d2cc1993-10-15 16:18:48 +000085extern int tuple_zero_allocs, fast_tuple_allocs;
86extern int quick_int_allocs, quick_neg_int_allocs;
Sjoerd Mullender3bb8a051993-10-22 12:04:32 +000087extern int null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000088void
Martin v. Löwis45294a92006-04-18 06:24:08 +000089dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000090{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000091 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000092
93 for (tp = type_list; tp; tp = tp->tp_next)
Martin v. Löwis45294a92006-04-18 06:24:08 +000094 fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000095 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000096 tp->tp_maxalloc);
Martin v. Löwis45294a92006-04-18 06:24:08 +000097 fprintf(f, "fast tuple allocs: %d, empty: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000098 fast_tuple_allocs, tuple_zero_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +000099 fprintf(f, "fast int allocs: pos: %d, neg: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000100 quick_int_allocs, quick_neg_int_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +0000101 fprintf(f, "null strings: %d, 1-strings: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000102 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000103}
104
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000105PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000106get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000107{
108 PyTypeObject *tp;
109 PyObject *result;
110 PyObject *v;
111
112 result = PyList_New(0);
113 if (result == NULL)
114 return NULL;
115 for (tp = type_list; tp; tp = tp->tp_next) {
Georg Brandl2cfaa342006-05-29 19:39:45 +0000116 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000117 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000118 if (v == NULL) {
119 Py_DECREF(result);
120 return NULL;
121 }
122 if (PyList_Append(result, v) < 0) {
123 Py_DECREF(v);
124 Py_DECREF(result);
125 return NULL;
126 }
127 Py_DECREF(v);
128 }
129 return result;
130}
131
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000132void
Fred Drake100814d2000-07-09 15:48:49 +0000133inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000134{
Martin v. Löwis45294a92006-04-18 06:24:08 +0000135 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000136 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000137 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000138 Py_FatalError("XXX inc_count sanity check");
Martin v. Löwis45294a92006-04-18 06:24:08 +0000139 if (type_list)
140 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000141 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000142 /* Note that as of Python 2.2, heap-allocated type objects
143 * can go away, but this code requires that they stay alive
144 * until program exit. That's why we're careful with
145 * refcounts here. type_list gets a new reference to tp,
146 * while ownership of the reference type_list used to hold
147 * (if any) was transferred to tp->tp_next in the line above.
148 * tp is thus effectively immortal after this.
149 */
150 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000151 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000152#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000153 /* Also insert in the doubly-linked list of all objects,
154 * if not already there.
155 */
156 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000157#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000158 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000159 tp->tp_allocs++;
160 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
161 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000162}
Martin v. Löwis45294a92006-04-18 06:24:08 +0000163
164void dec_count(PyTypeObject *tp)
165{
166 tp->tp_frees++;
167 if (unlist_types_without_objects &&
168 tp->tp_allocs == tp->tp_frees) {
169 /* unlink the type from type_list */
170 if (tp->tp_prev)
171 tp->tp_prev->tp_next = tp->tp_next;
172 else
173 type_list = tp->tp_next;
174 if (tp->tp_next)
175 tp->tp_next->tp_prev = tp->tp_prev;
176 tp->tp_next = tp->tp_prev = NULL;
177 Py_DECREF(tp);
178 }
179}
180
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000181#endif
182
Tim Peters7c321a82002-07-09 02:57:01 +0000183#ifdef Py_REF_DEBUG
184/* Log a fatal error; doesn't return. */
185void
186_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
187{
188 char buf[300];
189
190 PyOS_snprintf(buf, sizeof(buf),
Tim Peters4d073bb2006-03-23 05:38:33 +0000191 "%s:%i object at %p has negative ref count "
192 "%" PY_FORMAT_SIZE_T "d",
Tim Peters8af92d12006-03-23 05:41:24 +0000193 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000194 Py_FatalError(buf);
195}
196
197#endif /* Py_REF_DEBUG */
198
Thomas Heller1328b522004-04-22 17:23:49 +0000199void
200Py_IncRef(PyObject *o)
201{
202 Py_XINCREF(o);
203}
204
205void
206Py_DecRef(PyObject *o)
207{
208 Py_XDECREF(o);
209}
210
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000211PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000212PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000213{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000214 if (op == NULL)
215 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000216 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000217 op->ob_type = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000218 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000219 return op;
220}
221
Guido van Rossumb18618d2000-05-03 23:44:39 +0000222PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000223PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000224{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000225 if (op == NULL)
226 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000227 /* Any changes should be reflected in PyObject_INIT_VAR */
228 op->ob_size = size;
229 op->ob_type = tp;
230 _Py_NewReference((PyObject *)op);
231 return op;
232}
233
234PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000235_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000236{
237 PyObject *op;
238 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
239 if (op == NULL)
240 return PyErr_NoMemory();
241 return PyObject_INIT(op, tp);
242}
243
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000244PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000245_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000246{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000247 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000248 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000249 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000250 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000251 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000252 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000253}
254
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000255/* for binary compatibility with 2.2 */
256#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000257void
Fred Drake100814d2000-07-09 15:48:49 +0000258_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000259{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000260 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000261}
262
Neal Norwitz1a997502003-01-13 20:13:12 +0000263/* Implementation of PyObject_Print with recursion checking */
264static int
265internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266{
Guido van Rossum278ef591991-07-27 21:40:24 +0000267 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000268 if (nesting > 10) {
269 PyErr_SetString(PyExc_RuntimeError, "print recursion");
270 return -1;
271 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000272 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000273 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000274#ifdef USE_STACKCHECK
275 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000276 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000277 return -1;
278 }
279#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000280 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000281 if (op == NULL) {
282 fprintf(fp, "<nil>");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000283 }
Guido van Rossum90933611991-06-07 16:10:43 +0000284 else {
285 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000286 /* XXX(twouters) cast refcount to long until %zd is
287 universally available */
288 fprintf(fp, "<refcnt %ld at %p>",
289 (long)op->ob_refcnt, op);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000290 else if (op->ob_type->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000291 PyObject *s;
292 if (flags & Py_PRINT_RAW)
293 s = PyObject_Str(op);
294 else
295 s = PyObject_Repr(op);
296 if (s == NULL)
297 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000298 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000299 ret = internal_print(s, fp, Py_PRINT_RAW,
300 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000301 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000302 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000303 }
Guido van Rossum90933611991-06-07 16:10:43 +0000304 else
Guido van Rossum278ef591991-07-27 21:40:24 +0000305 ret = (*op->ob_type->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000306 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000307 if (ret == 0) {
308 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000309 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000310 clearerr(fp);
311 ret = -1;
312 }
313 }
314 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000315}
316
Neal Norwitz1a997502003-01-13 20:13:12 +0000317int
318PyObject_Print(PyObject *op, FILE *fp, int flags)
319{
320 return internal_print(op, fp, flags, 0);
321}
322
323
Barry Warsaw9bf16442001-01-23 16:24:35 +0000324/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000325void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000326{
Barry Warsaweefb1072001-02-22 22:39:18 +0000327 if (op == NULL)
328 fprintf(stderr, "NULL\n");
329 else {
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000330 fprintf(stderr, "object : ");
Barry Warsaweefb1072001-02-22 22:39:18 +0000331 (void)PyObject_Print(op, stderr, 0);
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000332 /* XXX(twouters) cast refcount to long until %zd is
333 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000334 fprintf(stderr, "\n"
335 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000336 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000337 "address : %p\n",
338 op->ob_type==NULL ? "NULL" : op->ob_type->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000339 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000340 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000341 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000342}
Barry Warsaw903138f2001-01-23 16:33:18 +0000343
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000344PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000345PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000346{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000347 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000348 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000349#ifdef USE_STACKCHECK
350 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000351 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000352 return NULL;
353 }
354#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000355 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000356 return PyString_FromString("<NULL>");
Barry Warsaw7ce36942001-08-24 18:34:26 +0000357 else if (v->ob_type->tp_repr == NULL)
Guido van Rossum21922aa2001-08-30 20:26:05 +0000358 return PyString_FromFormat("<%s object at %p>",
Barry Warsaw7ce36942001-08-24 18:34:26 +0000359 v->ob_type->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000360 else {
361 PyObject *res;
362 res = (*v->ob_type->tp_repr)(v);
363 if (res == NULL)
364 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000365#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000366 if (PyUnicode_Check(res)) {
367 PyObject* str;
Anthony Baxter262c00a2006-03-30 10:53:17 +0000368 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000369 Py_DECREF(res);
370 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000371 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000372 else
373 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000374 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000375#endif
Guido van Rossum4c08d552000-03-10 22:55:18 +0000376 if (!PyString_Check(res)) {
377 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000378 "__repr__ returned non-string (type %.200s)",
Guido van Rossum4c08d552000-03-10 22:55:18 +0000379 res->ob_type->tp_name);
380 Py_DECREF(res);
381 return NULL;
382 }
383 return res;
384 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000385}
386
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000387PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000388_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000389{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000390 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000391 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000392 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000393 return PyString_FromString("<NULL>");
Tim Peters5a49ade2001-09-11 01:41:59 +0000394 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000395 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000396 return v;
397 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000398#ifdef Py_USING_UNICODE
399 if (PyUnicode_CheckExact(v)) {
400 Py_INCREF(v);
401 return v;
402 }
403#endif
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000404 if (v->ob_type->tp_str == NULL)
405 return PyObject_Repr(v);
406
407 res = (*v->ob_type->tp_str)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000408 if (res == NULL)
409 return NULL;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000410 type_ok = PyString_Check(res);
411#ifdef Py_USING_UNICODE
412 type_ok = type_ok || PyUnicode_Check(res);
413#endif
414 if (!type_ok) {
415 PyErr_Format(PyExc_TypeError,
416 "__str__ returned non-string (type %.200s)",
417 res->ob_type->tp_name);
418 Py_DECREF(res);
419 return NULL;
420 }
421 return res;
422}
423
424PyObject *
425PyObject_Str(PyObject *v)
426{
427 PyObject *res = _PyObject_Str(v);
428 if (res == NULL)
429 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000430#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000431 if (PyUnicode_Check(res)) {
432 PyObject* str;
433 str = PyUnicode_AsEncodedString(res, NULL, NULL);
434 Py_DECREF(res);
435 if (str)
436 res = str;
437 else
438 return NULL;
439 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000440#endif
Neil Schemenauercf52c072005-08-12 17:34:58 +0000441 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000442 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000443}
444
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000445#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000446PyObject *
447PyObject_Unicode(PyObject *v)
448{
449 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000450 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000451 PyObject *str;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000452 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000453
Georg Brandl3daf7582006-03-13 22:22:11 +0000454 if (v == NULL) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000455 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000456 if (res == NULL)
457 return NULL;
458 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
459 Py_DECREF(res);
460 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000461 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000462 Py_INCREF(v);
463 return v;
464 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000465 /* XXX As soon as we have a tp_unicode slot, we should
466 check this before trying the __unicode__
467 method. */
468 if (unicodestr == NULL) {
469 unicodestr= PyString_InternFromString("__unicode__");
470 if (unicodestr == NULL)
471 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000472 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000473 func = PyObject_GetAttr(v, unicodestr);
474 if (func != NULL) {
475 res = PyEval_CallObject(func, (PyObject *)NULL);
476 Py_DECREF(func);
477 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000478 else {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000479 PyErr_Clear();
480 if (PyUnicode_Check(v)) {
481 /* For a Unicode subtype that's didn't overwrite __unicode__,
482 return a true Unicode object with the same data. */
483 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
484 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000485 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000486 if (PyString_CheckExact(v)) {
487 Py_INCREF(v);
488 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000489 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000490 else {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000491 if (v->ob_type->tp_str != NULL)
492 res = (*v->ob_type->tp_str)(v);
493 else
494 res = PyObject_Repr(v);
495 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000496 }
497 if (res == NULL)
498 return NULL;
499 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000500 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000501 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000502 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000503 }
504 return res;
505}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000506#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000507
508
Guido van Rossuma4073002002-05-31 20:03:54 +0000509/* Helper to warn about deprecated tp_compare return values. Return:
510 -2 for an exception;
511 -1 if v < w;
512 0 if v == w;
513 1 if v > w.
514 (This function cannot return 2.)
515*/
516static int
517adjust_tp_compare(int c)
518{
519 if (PyErr_Occurred()) {
520 if (c != -1 && c != -2) {
521 PyObject *t, *v, *tb;
522 PyErr_Fetch(&t, &v, &tb);
523 if (PyErr_Warn(PyExc_RuntimeWarning,
524 "tp_compare didn't return -1 or -2 "
525 "for exception") < 0) {
526 Py_XDECREF(t);
527 Py_XDECREF(v);
528 Py_XDECREF(tb);
529 }
530 else
531 PyErr_Restore(t, v, tb);
532 }
533 return -2;
534 }
535 else if (c < -1 || c > 1) {
536 if (PyErr_Warn(PyExc_RuntimeWarning,
537 "tp_compare didn't return -1, 0 or 1") < 0)
538 return -2;
539 else
540 return c < -1 ? -1 : 1;
541 }
542 else {
543 assert(c >= -1 && c <= 1);
544 return c;
545 }
546}
547
548
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000549/* Macro to get the tp_richcompare field of a type if defined */
550#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
551 ? (t)->tp_richcompare : NULL)
552
Guido van Rossume797ec12001-01-17 15:24:28 +0000553/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000554int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000555
Guido van Rossume797ec12001-01-17 15:24:28 +0000556/* Try a genuine rich comparison, returning an object. Return:
557 NULL for exception;
558 NotImplemented if this particular rich comparison is not implemented or
559 undefined;
560 some object not equal to NotImplemented if it is implemented
561 (this latter object may not be a Boolean).
562*/
563static PyObject *
564try_rich_compare(PyObject *v, PyObject *w, int op)
565{
566 richcmpfunc f;
567 PyObject *res;
568
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000569 if (v->ob_type != w->ob_type &&
570 PyType_IsSubtype(w->ob_type, v->ob_type) &&
571 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000572 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000573 if (res != Py_NotImplemented)
574 return res;
575 Py_DECREF(res);
576 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000577 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000578 res = (*f)(v, w, op);
579 if (res != Py_NotImplemented)
580 return res;
581 Py_DECREF(res);
582 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000583 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000584 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000585 }
586 res = Py_NotImplemented;
587 Py_INCREF(res);
588 return res;
589}
590
591/* Try a genuine rich comparison, returning an int. Return:
592 -1 for exception (including the case where try_rich_compare() returns an
593 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000594 0 if the outcome is false;
595 1 if the outcome is true;
596 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000597*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000598static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000599try_rich_compare_bool(PyObject *v, PyObject *w, int op)
600{
601 PyObject *res;
602 int ok;
603
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000604 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000605 return 2; /* Shortcut, avoid INCREF+DECREF */
606 res = try_rich_compare(v, w, op);
607 if (res == NULL)
608 return -1;
609 if (res == Py_NotImplemented) {
610 Py_DECREF(res);
611 return 2;
612 }
613 ok = PyObject_IsTrue(res);
614 Py_DECREF(res);
615 return ok;
616}
617
618/* Try rich comparisons to determine a 3-way comparison. Return:
619 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000620 -1 if v < w;
621 0 if v == w;
622 1 if v > w;
623 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000624*/
625static int
626try_rich_to_3way_compare(PyObject *v, PyObject *w)
627{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000628 static struct { int op; int outcome; } tries[3] = {
629 /* Try this operator, and if it is true, use this outcome: */
630 {Py_EQ, 0},
631 {Py_LT, -1},
632 {Py_GT, 1},
633 };
634 int i;
635
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000636 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000637 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000638
639 for (i = 0; i < 3; i++) {
640 switch (try_rich_compare_bool(v, w, tries[i].op)) {
641 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000642 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000643 case 1:
644 return tries[i].outcome;
645 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000646 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000647
648 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000649}
650
651/* Try a 3-way comparison, returning an int. Return:
652 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000653 -1 if v < w;
654 0 if v == w;
655 1 if v > w;
656 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000657*/
658static int
659try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000660{
661 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000662 cmpfunc f;
663
664 /* Comparisons involving instances are given to instance_compare,
665 which has the same return conventions as this function. */
666
Guido van Rossumab3b0342001-09-18 20:38:53 +0000667 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000668 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000669 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000670 if (PyInstance_Check(w))
671 return (*w->ob_type->tp_compare)(v, w);
672
Guido van Rossumab3b0342001-09-18 20:38:53 +0000673 /* If both have the same (non-NULL) tp_compare, use it. */
674 if (f != NULL && f == w->ob_type->tp_compare) {
675 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000676 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000677 }
678
679 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
680 if (f == _PyObject_SlotCompare ||
681 w->ob_type->tp_compare == _PyObject_SlotCompare)
682 return _PyObject_SlotCompare(v, w);
683
Armin Rigoa1748132004-12-23 22:13:13 +0000684 /* If we're here, v and w,
685 a) are not instances;
686 b) have different types or a type without tp_compare; and
687 c) don't have a user-defined tp_compare.
688 tp_compare implementations in C assume that both arguments
689 have their type, so we give up if the coercion fails or if
690 it yields types which are still incompatible (which can
691 happen with a user-defined nb_coerce).
692 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000693 c = PyNumber_CoerceEx(&v, &w);
694 if (c < 0)
695 return -2;
696 if (c > 0)
697 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000698 f = v->ob_type->tp_compare;
699 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000700 c = (*f)(v, w);
701 Py_DECREF(v);
702 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000703 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000704 }
705
Guido van Rossume797ec12001-01-17 15:24:28 +0000706 /* No comparison defined */
707 Py_DECREF(v);
708 Py_DECREF(w);
709 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000710}
711
Guido van Rossume797ec12001-01-17 15:24:28 +0000712/* Final fallback 3-way comparison, returning an int. Return:
713 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000714 -1 if v < w;
715 0 if v == w;
716 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000717*/
718static int
719default_3way_compare(PyObject *v, PyObject *w)
720{
721 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000722 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000723
724 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000725 /* When comparing these pointers, they must be cast to
726 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
727 * uintptr_t). ANSI specifies that pointer compares other
728 * than == and != to non-related structures are undefined.
729 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000730 Py_uintptr_t vv = (Py_uintptr_t)v;
731 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000732 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
733 }
734
Guido van Rossum0871e932001-01-22 19:28:09 +0000735 /* None is smaller than anything */
736 if (v == Py_None)
737 return -1;
738 if (w == Py_None)
739 return 1;
740
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000741 /* different type: compare type names; numbers are smaller */
742 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000743 vname = "";
744 else
745 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000746 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000747 wname = "";
748 else
749 wname = w->ob_type->tp_name;
750 c = strcmp(vname, wname);
751 if (c < 0)
752 return -1;
753 if (c > 0)
754 return 1;
755 /* Same type name, or (more likely) incomparable numeric types */
756 return ((Py_uintptr_t)(v->ob_type) < (
757 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000758}
759
Tim Peters6d60b2e2001-05-07 20:53:51 +0000760/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000761 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000762 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000763 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000764 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000765 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000766 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000767*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000768static int
Fred Drake100814d2000-07-09 15:48:49 +0000769do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000770{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000771 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000772 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000773
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000774 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000775 && (f = v->ob_type->tp_compare) != NULL) {
776 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000777 if (PyInstance_Check(v)) {
778 /* Instance tp_compare has a different signature.
779 But if it returns undefined we fall through. */
780 if (c != 2)
781 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000782 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000783 }
784 else
785 return adjust_tp_compare(c);
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000786 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000787 /* We only get here if one of the following is true:
788 a) v and w have different types
789 b) v and w have the same type, which doesn't have tp_compare
790 c) v and w are instances, and either __cmp__ is not defined or
791 __cmp__ returns NotImplemented
792 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000793 c = try_rich_to_3way_compare(v, w);
794 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000795 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000796 c = try_3way_compare(v, w);
797 if (c < 2)
798 return c;
799 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000800}
801
Tim Petersc99213f2001-11-04 05:57:16 +0000802/* Compare v to w. Return
803 -1 if v < w or exception (PyErr_Occurred() true in latter case).
804 0 if v == w.
805 1 if v > w.
806 XXX The docs (C API manual) say the return value is undefined in case
807 XXX of error.
808*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000809int
Fred Drake100814d2000-07-09 15:48:49 +0000810PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000811{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000812 int result;
813
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000814 if (v == NULL || w == NULL) {
815 PyErr_BadInternalCall();
816 return -1;
817 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000818 if (v == w)
819 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000820 if (Py_EnterRecursiveCall(" in cmp"))
821 return -1;
822 result = do_cmp(v, w);
823 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000824 return result < 0 ? -1 : result;
825}
826
Tim Petersc99213f2001-11-04 05:57:16 +0000827/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000828static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000829convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000830{
Guido van Rossume797ec12001-01-17 15:24:28 +0000831 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000832 switch (op) {
833 case Py_LT: c = c < 0; break;
834 case Py_LE: c = c <= 0; break;
835 case Py_EQ: c = c == 0; break;
836 case Py_NE: c = c != 0; break;
837 case Py_GT: c = c > 0; break;
838 case Py_GE: c = c >= 0; break;
839 }
840 result = c ? Py_True : Py_False;
841 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000842 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000843}
Tim Peters803526b2002-07-07 05:13:56 +0000844
Tim Petersc99213f2001-11-04 05:57:16 +0000845/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
846 Return
847 NULL if error
848 Py_True if v op w
849 Py_False if not (v op w)
850*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000851static PyObject *
852try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
853{
854 int c;
855
856 c = try_3way_compare(v, w);
857 if (c >= 2)
858 c = default_3way_compare(v, w);
859 if (c <= -2)
860 return NULL;
861 return convert_3way_to_object(op, c);
862}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000863
Tim Petersc99213f2001-11-04 05:57:16 +0000864/* Do rich comparison on v and w. Return
865 NULL if error
866 Else a new reference to an object other than Py_NotImplemented, usually(?):
867 Py_True if v op w
868 Py_False if not (v op w)
869*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000870static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000871do_richcmp(PyObject *v, PyObject *w, int op)
872{
873 PyObject *res;
874
875 res = try_rich_compare(v, w, op);
876 if (res != Py_NotImplemented)
877 return res;
878 Py_DECREF(res);
879
880 return try_3way_to_rich_compare(v, w, op);
881}
882
Tim Petersc99213f2001-11-04 05:57:16 +0000883/* Return:
884 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000885 some object not equal to NotImplemented if it is implemented
886 (this latter object may not be a Boolean).
887*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000888PyObject *
889PyObject_RichCompare(PyObject *v, PyObject *w, int op)
890{
891 PyObject *res;
892
893 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000894 if (Py_EnterRecursiveCall(" in cmp"))
895 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000896
Armin Rigo2b3eb402003-10-28 12:05:48 +0000897 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000898 get out cheap (don't bother with coercions etc.). */
899 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
900 cmpfunc fcmp;
901 richcmpfunc frich = RICHCOMPARE(v->ob_type);
902 /* If the type has richcmp, try it first. try_rich_compare
903 tries it two-sided, which is not needed since we've a
904 single type only. */
905 if (frich != NULL) {
906 res = (*frich)(v, w, op);
907 if (res != Py_NotImplemented)
908 goto Done;
909 Py_DECREF(res);
910 }
911 /* No richcmp, or this particular richmp not implemented.
912 Try 3-way cmp. */
913 fcmp = v->ob_type->tp_compare;
914 if (fcmp != NULL) {
915 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000916 c = adjust_tp_compare(c);
917 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000918 res = NULL;
919 goto Done;
920 }
921 res = convert_3way_to_object(op, c);
922 goto Done;
923 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000924 }
Tim Peters67754e92001-11-04 07:29:31 +0000925
926 /* Fast path not taken, or couldn't deliver a useful result. */
927 res = do_richcmp(v, w, op);
928Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000929 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000930 return res;
931}
932
Tim Petersde9725f2001-05-05 10:06:17 +0000933/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000934int
935PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
936{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000937 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000938 int ok;
939
Raymond Hettinger93d44812004-03-21 17:01:44 +0000940 /* Quick result when objects are the same.
941 Guarantees that identity implies equality. */
942 if (v == w) {
943 if (op == Py_EQ)
944 return 1;
945 else if (op == Py_NE)
946 return 0;
947 }
948
949 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000950 if (res == NULL)
951 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +0000952 if (PyBool_Check(res))
953 ok = (res == Py_True);
954 else
955 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +0000956 Py_DECREF(res);
957 return ok;
958}
Fred Drake13634cf2000-06-29 19:17:04 +0000959
960/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +0000961 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +0000962
963 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
964*/
965
966long
Fred Drake100814d2000-07-09 15:48:49 +0000967_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +0000968{
Tim Peters39dce292000-08-15 03:34:48 +0000969 double intpart, fractpart;
970 int expo;
971 long hipart;
972 long x; /* the final hash value */
973 /* This is designed so that Python numbers of different types
974 * that compare equal hash to the same value; otherwise comparisons
975 * of mapping keys will turn out weird.
976 */
977
Tim Peters39dce292000-08-15 03:34:48 +0000978 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +0000979 if (fractpart == 0.0) {
980 /* This must return the same hash as an equal int or long. */
981 if (intpart > LONG_MAX || -intpart > LONG_MAX) {
982 /* Convert to long and use its hash. */
983 PyObject *plong; /* converted to Python long */
984 if (Py_IS_INFINITY(intpart))
985 /* can't convert to long int -- arbitrary */
986 v = v < 0 ? -271828.0 : 314159.0;
987 plong = PyLong_FromDouble(v);
988 if (plong == NULL)
989 return -1;
990 x = PyObject_Hash(plong);
991 Py_DECREF(plong);
992 return x;
993 }
994 /* Fits in a C long == a Python int, so is its own hash. */
995 x = (long)intpart;
996 if (x == -1)
997 x = -2;
998 return x;
999 }
1000 /* The fractional part is non-zero, so we don't have to worry about
1001 * making this match the hash of some other type.
1002 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001003 * Since the VAX D double format has 56 mantissa bits, which is the
1004 * most of any double format in use, each of these parts may have as
1005 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001006 * So, assuming sizeof(long) >= 4, each part can be broken into two
1007 * longs; frexp and multiplication are used to do that.
1008 * Also, since the Cray double format has 15 exponent bits, which is
1009 * the most of any double format in use, shifting the exponent field
1010 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001011 */
Tim Peters39dce292000-08-15 03:34:48 +00001012 v = frexp(v, &expo);
1013 v *= 2147483648.0; /* 2**31 */
1014 hipart = (long)v; /* take the top 32 bits */
1015 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1016 x = hipart + (long)v + (expo << 15);
1017 if (x == -1)
1018 x = -2;
1019 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001020}
1021
1022long
Fred Drake100814d2000-07-09 15:48:49 +00001023_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001024{
1025#if SIZEOF_LONG >= SIZEOF_VOID_P
1026 return (long)p;
1027#else
1028 /* convert to a Python long and hash that */
1029 PyObject* longobj;
1030 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001031
Fred Drake13634cf2000-06-29 19:17:04 +00001032 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1033 x = -1;
1034 goto finally;
1035 }
1036 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001037
Fred Drake13634cf2000-06-29 19:17:04 +00001038finally:
1039 Py_XDECREF(longobj);
1040 return x;
1041#endif
1042}
1043
1044
Guido van Rossum9bfef441993-03-29 10:43:31 +00001045long
Fred Drake100814d2000-07-09 15:48:49 +00001046PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001047{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001048 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001049 if (tp->tp_hash != NULL)
1050 return (*tp->tp_hash)(v);
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001051 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001052 return _Py_HashPointer(v); /* Use address as hash value */
1053 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001054 /* If there's a cmp but no hash defined, the object can't be hashed */
Georg Brandlccff7852006-06-18 22:17:29 +00001055 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1056 v->ob_type->tp_name);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001057 return -1;
1058}
1059
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001060PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001061PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001062{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001063 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001064
Tim Peters6d6c1a32001-08-02 04:15:00 +00001065 if (v->ob_type->tp_getattr != NULL)
Martin v. Löwis15e62742006-02-27 16:46:16 +00001066 return (*v->ob_type->tp_getattr)(v, (char*)name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001067 w = PyString_InternFromString(name);
1068 if (w == NULL)
1069 return NULL;
1070 res = PyObject_GetAttr(v, w);
1071 Py_XDECREF(w);
1072 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001073}
1074
1075int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001076PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001077{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001078 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001079 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001080 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001081 return 1;
1082 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001083 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001084 return 0;
1085}
1086
1087int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001088PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001089{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001090 PyObject *s;
1091 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001092
Tim Peters6d6c1a32001-08-02 04:15:00 +00001093 if (v->ob_type->tp_setattr != NULL)
Martin v. Löwis15e62742006-02-27 16:46:16 +00001094 return (*v->ob_type->tp_setattr)(v, (char*)name, w);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001095 s = PyString_InternFromString(name);
1096 if (s == NULL)
1097 return -1;
1098 res = PyObject_SetAttr(v, s, w);
1099 Py_XDECREF(s);
1100 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001101}
1102
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001103PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001104PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001105{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001106 PyTypeObject *tp = v->ob_type;
1107
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001108 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001109#ifdef Py_USING_UNICODE
1110 /* The Unicode to string conversion is done here because the
1111 existing tp_getattro slots expect a string object as name
1112 and we wouldn't want to break those. */
1113 if (PyUnicode_Check(name)) {
1114 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1115 if (name == NULL)
1116 return NULL;
1117 }
1118 else
1119#endif
1120 {
Georg Brandlccff7852006-06-18 22:17:29 +00001121 PyErr_Format(PyExc_TypeError,
1122 "attribute name must be string, not '%.200s'",
1123 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001124 return NULL;
1125 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001126 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001127 if (tp->tp_getattro != NULL)
1128 return (*tp->tp_getattro)(v, name);
1129 if (tp->tp_getattr != NULL)
1130 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
1131 PyErr_Format(PyExc_AttributeError,
1132 "'%.50s' object has no attribute '%.400s'",
1133 tp->tp_name, PyString_AS_STRING(name));
1134 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001135}
1136
1137int
Fred Drake100814d2000-07-09 15:48:49 +00001138PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001139{
1140 PyObject *res = PyObject_GetAttr(v, name);
1141 if (res != NULL) {
1142 Py_DECREF(res);
1143 return 1;
1144 }
1145 PyErr_Clear();
1146 return 0;
1147}
1148
1149int
Fred Drake100814d2000-07-09 15:48:49 +00001150PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001151{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001152 PyTypeObject *tp = v->ob_type;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001153 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001154
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001155 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001156#ifdef Py_USING_UNICODE
1157 /* The Unicode to string conversion is done here because the
1158 existing tp_setattro slots expect a string object as name
1159 and we wouldn't want to break those. */
1160 if (PyUnicode_Check(name)) {
1161 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1162 if (name == NULL)
1163 return -1;
1164 }
Tim Peters803526b2002-07-07 05:13:56 +00001165 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001166#endif
1167 {
Georg Brandlccff7852006-06-18 22:17:29 +00001168 PyErr_Format(PyExc_TypeError,
1169 "attribute name must be string, not '%.200s'",
1170 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001171 return -1;
1172 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001173 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001174 else
1175 Py_INCREF(name);
1176
1177 PyString_InternInPlace(&name);
1178 if (tp->tp_setattro != NULL) {
1179 err = (*tp->tp_setattro)(v, name, value);
1180 Py_DECREF(name);
1181 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001182 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001183 if (tp->tp_setattr != NULL) {
1184 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
1185 Py_DECREF(name);
1186 return err;
1187 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001188 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001189 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1190 PyErr_Format(PyExc_TypeError,
1191 "'%.100s' object has no attributes "
1192 "(%s .%.100s)",
1193 tp->tp_name,
1194 value==NULL ? "del" : "assign to",
1195 PyString_AS_STRING(name));
1196 else
1197 PyErr_Format(PyExc_TypeError,
1198 "'%.100s' object has only read-only attributes "
1199 "(%s .%.100s)",
1200 tp->tp_name,
1201 value==NULL ? "del" : "assign to",
1202 PyString_AS_STRING(name));
1203 return -1;
1204}
1205
1206/* Helper to get a pointer to an object's __dict__ slot, if any */
1207
1208PyObject **
1209_PyObject_GetDictPtr(PyObject *obj)
1210{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001211 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001212 PyTypeObject *tp = obj->ob_type;
1213
1214 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1215 return NULL;
1216 dictoffset = tp->tp_dictoffset;
1217 if (dictoffset == 0)
1218 return NULL;
1219 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001220 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001221 size_t size;
1222
1223 tsize = ((PyVarObject *)obj)->ob_size;
1224 if (tsize < 0)
1225 tsize = -tsize;
1226 size = _PyObject_VAR_SIZE(tp, tsize);
1227
Tim Peters6d483d32001-10-06 21:27:34 +00001228 dictoffset += (long)size;
1229 assert(dictoffset > 0);
1230 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001231 }
1232 return (PyObject **) ((char *)obj + dictoffset);
1233}
1234
Tim Peters6d6c1a32001-08-02 04:15:00 +00001235PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001236PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001237{
1238 Py_INCREF(obj);
1239 return obj;
1240}
1241
Michael W. Hudson1593f502004-09-14 17:09:47 +00001242/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1243
Raymond Hettinger01538262003-03-17 08:24:35 +00001244PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001245PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1246{
1247 PyTypeObject *tp = obj->ob_type;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001248 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001249 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001250 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001251 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001252 PyObject **dictptr;
1253
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001254 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001255#ifdef Py_USING_UNICODE
1256 /* The Unicode to string conversion is done here because the
1257 existing tp_setattro slots expect a string object as name
1258 and we wouldn't want to break those. */
1259 if (PyUnicode_Check(name)) {
1260 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1261 if (name == NULL)
1262 return NULL;
1263 }
Tim Peters803526b2002-07-07 05:13:56 +00001264 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001265#endif
1266 {
Georg Brandlccff7852006-06-18 22:17:29 +00001267 PyErr_Format(PyExc_TypeError,
1268 "attribute name must be string, not '%.200s'",
1269 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001270 return NULL;
1271 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001272 }
1273 else
1274 Py_INCREF(name);
1275
Tim Peters6d6c1a32001-08-02 04:15:00 +00001276 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001277 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001278 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001279 }
1280
Guido van Rossum056fbf42002-08-19 19:22:50 +00001281 /* Inline _PyType_Lookup */
1282 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001283 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001284 PyObject *mro, *base, *dict;
1285
1286 /* Look in tp_dict of types in MRO */
1287 mro = tp->tp_mro;
1288 assert(mro != NULL);
1289 assert(PyTuple_Check(mro));
1290 n = PyTuple_GET_SIZE(mro);
1291 for (i = 0; i < n; i++) {
1292 base = PyTuple_GET_ITEM(mro, i);
1293 if (PyClass_Check(base))
1294 dict = ((PyClassObject *)base)->cl_dict;
1295 else {
1296 assert(PyType_Check(base));
1297 dict = ((PyTypeObject *)base)->tp_dict;
1298 }
1299 assert(dict && PyDict_Check(dict));
1300 descr = PyDict_GetItem(dict, name);
1301 if (descr != NULL)
1302 break;
1303 }
1304 }
1305
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001306 Py_XINCREF(descr);
1307
Tim Peters6d6c1a32001-08-02 04:15:00 +00001308 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001309 if (descr != NULL &&
1310 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001311 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001312 if (f != NULL && PyDescr_IsData(descr)) {
1313 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001314 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001315 goto done;
1316 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001317 }
1318
Guido van Rossumc66ff442002-08-19 16:50:48 +00001319 /* Inline _PyObject_GetDictPtr */
1320 dictoffset = tp->tp_dictoffset;
1321 if (dictoffset != 0) {
1322 PyObject *dict;
1323 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001324 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001325 size_t size;
1326
1327 tsize = ((PyVarObject *)obj)->ob_size;
1328 if (tsize < 0)
1329 tsize = -tsize;
1330 size = _PyObject_VAR_SIZE(tp, tsize);
1331
1332 dictoffset += (long)size;
1333 assert(dictoffset > 0);
1334 assert(dictoffset % SIZEOF_VOID_P == 0);
1335 }
1336 dictptr = (PyObject **) ((char *)obj + dictoffset);
1337 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001338 if (dict != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001339 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001340 if (res != NULL) {
1341 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001342 Py_XDECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001343 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001344 }
1345 }
1346 }
1347
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001348 if (f != NULL) {
1349 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001350 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001351 goto done;
1352 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001353
1354 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001355 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001356 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001357 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001358 }
1359
1360 PyErr_Format(PyExc_AttributeError,
1361 "'%.50s' object has no attribute '%.400s'",
1362 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001363 done:
1364 Py_DECREF(name);
1365 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001366}
1367
1368int
1369PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1370{
1371 PyTypeObject *tp = obj->ob_type;
1372 PyObject *descr;
1373 descrsetfunc f;
1374 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001375 int res = -1;
1376
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001377 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001378#ifdef Py_USING_UNICODE
1379 /* The Unicode to string conversion is done here because the
1380 existing tp_setattro slots expect a string object as name
1381 and we wouldn't want to break those. */
1382 if (PyUnicode_Check(name)) {
1383 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1384 if (name == NULL)
1385 return -1;
1386 }
Tim Peters803526b2002-07-07 05:13:56 +00001387 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001388#endif
1389 {
Georg Brandlccff7852006-06-18 22:17:29 +00001390 PyErr_Format(PyExc_TypeError,
1391 "attribute name must be string, not '%.200s'",
1392 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001393 return -1;
1394 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001395 }
1396 else
1397 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001398
1399 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001400 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001401 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001402 }
1403
1404 descr = _PyType_Lookup(tp, name);
1405 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001406 if (descr != NULL &&
1407 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001408 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001409 if (f != NULL && PyDescr_IsData(descr)) {
1410 res = f(descr, obj, value);
1411 goto done;
1412 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001413 }
1414
1415 dictptr = _PyObject_GetDictPtr(obj);
1416 if (dictptr != NULL) {
1417 PyObject *dict = *dictptr;
1418 if (dict == NULL && value != NULL) {
1419 dict = PyDict_New();
1420 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001421 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001422 *dictptr = dict;
1423 }
1424 if (dict != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001425 if (value == NULL)
1426 res = PyDict_DelItem(dict, name);
1427 else
1428 res = PyDict_SetItem(dict, name, value);
1429 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1430 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001431 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001432 }
1433 }
1434
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001435 if (f != NULL) {
1436 res = f(descr, obj, value);
1437 goto done;
1438 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001439
1440 if (descr == NULL) {
1441 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001442 "'%.100s' object has no attribute '%.200s'",
Tim Peters6d6c1a32001-08-02 04:15:00 +00001443 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001444 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001445 }
1446
1447 PyErr_Format(PyExc_AttributeError,
1448 "'%.50s' object attribute '%.400s' is read-only",
1449 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001450 done:
1451 Py_DECREF(name);
1452 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001453}
1454
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001455/* Test a value used as condition, e.g., in a for or if statement.
1456 Return -1 if an error occurred */
1457
1458int
Fred Drake100814d2000-07-09 15:48:49 +00001459PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001460{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001461 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001462 if (v == Py_True)
1463 return 1;
1464 if (v == Py_False)
1465 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001466 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001467 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001468 else if (v->ob_type->tp_as_number != NULL &&
1469 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001470 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001471 else if (v->ob_type->tp_as_mapping != NULL &&
1472 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001473 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001474 else if (v->ob_type->tp_as_sequence != NULL &&
1475 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001476 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1477 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001478 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001479 /* if it is negative, it should be either -1 or -2 */
1480 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001481}
1482
Tim Peters803526b2002-07-07 05:13:56 +00001483/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001484 Return -1 if an error occurred */
1485
1486int
Fred Drake100814d2000-07-09 15:48:49 +00001487PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001488{
1489 int res;
1490 res = PyObject_IsTrue(v);
1491 if (res < 0)
1492 return res;
1493 return res == 0;
1494}
1495
Guido van Rossum5524a591995-01-10 15:26:20 +00001496/* Coerce two numeric types to the "larger" one.
1497 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001498 Return value:
1499 -1 if an error occurred;
1500 0 if the coercion succeeded (and then the reference counts are increased);
1501 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001502*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001503int
Fred Drake100814d2000-07-09 15:48:49 +00001504PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001505{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001506 register PyObject *v = *pv;
1507 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001508 int res;
1509
Guido van Rossum517c7d42002-04-26 02:49:14 +00001510 /* Shortcut only for old-style types */
1511 if (v->ob_type == w->ob_type &&
1512 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1513 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001514 Py_INCREF(v);
1515 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001516 return 0;
1517 }
1518 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1519 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1520 if (res <= 0)
1521 return res;
1522 }
1523 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1524 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1525 if (res <= 0)
1526 return res;
1527 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001528 return 1;
1529}
1530
Guido van Rossume797ec12001-01-17 15:24:28 +00001531/* Coerce two numeric types to the "larger" one.
1532 Increment the reference count on each argument.
1533 Return -1 and raise an exception if no coercion is possible
1534 (and then no reference count is incremented).
1535*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001536int
Fred Drake100814d2000-07-09 15:48:49 +00001537PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001538{
1539 int err = PyNumber_CoerceEx(pv, pw);
1540 if (err <= 0)
1541 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001542 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001543 return -1;
1544}
1545
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001546
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001547/* Test whether an object can be called */
1548
1549int
Fred Drake100814d2000-07-09 15:48:49 +00001550PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001551{
1552 if (x == NULL)
1553 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001554 if (PyInstance_Check(x)) {
1555 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001556 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001557 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001558 return 0;
1559 }
1560 /* Could test recursively but don't, for fear of endless
1561 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001562 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001563 return 1;
1564 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001565 else {
1566 return x->ob_type->tp_call != NULL;
1567 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001568}
1569
Georg Brandl871f1bc2007-03-12 13:17:36 +00001570/* ------------------------- PyObject_Dir() helpers ------------------------- */
1571
Tim Peters7eea37e2001-09-04 22:08:56 +00001572/* Helper for PyObject_Dir.
1573 Merge the __dict__ of aclass into dict, and recursively also all
1574 the __dict__s of aclass's base classes. The order of merging isn't
1575 defined, as it's expected that only the final set of dict keys is
1576 interesting.
1577 Return 0 on success, -1 on error.
1578*/
1579
1580static int
1581merge_class_dict(PyObject* dict, PyObject* aclass)
1582{
1583 PyObject *classdict;
1584 PyObject *bases;
1585
1586 assert(PyDict_Check(dict));
1587 assert(aclass);
1588
1589 /* Merge in the type's dict (if any). */
1590 classdict = PyObject_GetAttrString(aclass, "__dict__");
1591 if (classdict == NULL)
1592 PyErr_Clear();
1593 else {
1594 int status = PyDict_Update(dict, classdict);
1595 Py_DECREF(classdict);
1596 if (status < 0)
1597 return -1;
1598 }
1599
1600 /* Recursively merge in the base types' (if any) dicts. */
1601 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001602 if (bases == NULL)
1603 PyErr_Clear();
1604 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001605 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001606 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001607 n = PySequence_Size(bases); /* This better be right */
1608 if (n < 0)
1609 PyErr_Clear();
1610 else {
1611 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001612 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001613 PyObject *base = PySequence_GetItem(bases, i);
1614 if (base == NULL) {
1615 Py_DECREF(bases);
1616 return -1;
1617 }
Tim Peters18e70832003-02-05 19:35:19 +00001618 status = merge_class_dict(dict, base);
1619 Py_DECREF(base);
1620 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001621 Py_DECREF(bases);
1622 return -1;
1623 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001624 }
1625 }
1626 Py_DECREF(bases);
1627 }
1628 return 0;
1629}
1630
Tim Peters305b5852001-09-17 02:38:46 +00001631/* Helper for PyObject_Dir.
1632 If obj has an attr named attrname that's a list, merge its string
1633 elements into keys of dict.
1634 Return 0 on success, -1 on error. Errors due to not finding the attr,
1635 or the attr not being a list, are suppressed.
1636*/
1637
1638static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001639merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001640{
1641 PyObject *list;
1642 int result = 0;
1643
1644 assert(PyDict_Check(dict));
1645 assert(obj);
1646 assert(attrname);
1647
1648 list = PyObject_GetAttrString(obj, attrname);
1649 if (list == NULL)
1650 PyErr_Clear();
1651
1652 else if (PyList_Check(list)) {
1653 int i;
1654 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1655 PyObject *item = PyList_GET_ITEM(list, i);
1656 if (PyString_Check(item)) {
1657 result = PyDict_SetItem(dict, item, Py_None);
1658 if (result < 0)
1659 break;
1660 }
1661 }
1662 }
1663
1664 Py_XDECREF(list);
1665 return result;
1666}
1667
Georg Brandl871f1bc2007-03-12 13:17:36 +00001668/* Helper for PyObject_Dir without arguments: returns the local scope. */
1669static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001670_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001671{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001672 PyObject *names;
1673 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001674
Georg Brandl871f1bc2007-03-12 13:17:36 +00001675 if (locals == NULL) {
1676 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1677 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001678 }
1679
Georg Brandl871f1bc2007-03-12 13:17:36 +00001680 names = PyMapping_Keys(locals);
1681 if (!names)
1682 return NULL;
1683 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001684 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001685 "dir(): expected keys() of locals to be a list, "
1686 "not '%.200s'", names->ob_type->tp_name);
1687 Py_DECREF(names);
1688 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001689 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001690 /* the locals don't need to be DECREF'd */
1691 return names;
1692}
Tim Peters7eea37e2001-09-04 22:08:56 +00001693
Georg Brandl871f1bc2007-03-12 13:17:36 +00001694/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1695 We deliberately don't suck up its __class__, as methods belonging to the
1696 metaclass would probably be more confusing than helpful.
1697*/
1698static PyObject *
1699_specialized_dir_type(PyObject *obj)
1700{
1701 PyObject *result = NULL;
1702 PyObject *dict = PyDict_New();
1703
1704 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1705 result = PyDict_Keys(dict);
1706
1707 Py_XDECREF(dict);
1708 return result;
1709}
1710
1711/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1712static PyObject *
1713_specialized_dir_module(PyObject *obj)
1714{
1715 PyObject *result = NULL;
1716 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1717
1718 if (dict != NULL) {
1719 if (PyDict_Check(dict))
1720 result = PyDict_Keys(dict);
1721 else {
1722 PyErr_Format(PyExc_TypeError,
1723 "%.200s.__dict__ is not a dictionary",
1724 PyModule_GetName(obj));
1725 }
1726 }
1727
1728 Py_XDECREF(dict);
1729 return result;
1730}
1731
1732/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1733 and recursively up the __class__.__bases__ chain.
1734*/
1735static PyObject *
1736_generic_dir(PyObject *obj)
1737{
1738 PyObject *result = NULL;
1739 PyObject *dict = NULL;
1740 PyObject *itsclass = NULL;
1741
1742 /* Get __dict__ (which may or may not be a real dict...) */
1743 dict = PyObject_GetAttrString(obj, "__dict__");
1744 if (dict == NULL) {
1745 PyErr_Clear();
1746 dict = PyDict_New();
1747 }
1748 else if (!PyDict_Check(dict)) {
1749 Py_DECREF(dict);
1750 dict = PyDict_New();
1751 }
1752 else {
1753 /* Copy __dict__ to avoid mutating it. */
1754 PyObject *temp = PyDict_Copy(dict);
1755 Py_DECREF(dict);
1756 dict = temp;
1757 }
1758
1759 if (dict == NULL)
1760 goto error;
1761
1762 /* Merge in __members__ and __methods__ (if any).
1763 * This is removed in Python 3000. */
1764 if (merge_list_attr(dict, obj, "__members__") < 0)
1765 goto error;
1766 if (merge_list_attr(dict, obj, "__methods__") < 0)
1767 goto error;
1768
1769 /* Merge in attrs reachable from its class. */
1770 itsclass = PyObject_GetAttrString(obj, "__class__");
1771 if (itsclass == NULL)
1772 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1773 __class__ exists? */
1774 PyErr_Clear();
1775 else {
1776 if (merge_class_dict(dict, itsclass) != 0)
1777 goto error;
1778 }
1779
1780 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001781 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001782error:
1783 Py_XDECREF(itsclass);
1784 Py_XDECREF(dict);
1785 return result;
1786}
1787
1788/* Helper for PyObject_Dir: object introspection.
1789 This calls one of the above specialized versions if no __dir__ method
1790 exists. */
1791static PyObject *
1792_dir_object(PyObject *obj)
1793{
Georg Brandl3bb15672007-03-13 07:23:16 +00001794 PyObject *result = NULL;
1795 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1796 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001797
1798 assert(obj);
1799 if (dirfunc == NULL) {
1800 /* use default implementation */
1801 PyErr_Clear();
1802 if (PyModule_Check(obj))
1803 result = _specialized_dir_module(obj);
1804 else if (PyType_Check(obj) || PyClass_Check(obj))
1805 result = _specialized_dir_type(obj);
1806 else
1807 result = _generic_dir(obj);
1808 }
1809 else {
1810 /* use __dir__ */
1811 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1812 Py_DECREF(dirfunc);
1813 if (result == NULL)
1814 return NULL;
1815
1816 /* result must be a list */
1817 /* XXX(gbrandl): could also check if all items are strings */
1818 if (!PyList_Check(result)) {
1819 PyErr_Format(PyExc_TypeError,
1820 "__dir__() must return a list, not %.200s",
1821 result->ob_type->tp_name);
1822 Py_DECREF(result);
1823 result = NULL;
1824 }
1825 }
1826
1827 return result;
1828}
1829
1830/* Implementation of dir() -- if obj is NULL, returns the names in the current
1831 (local) scope. Otherwise, performs introspection of the object: returns a
1832 sorted list of attribute names (supposedly) accessible from the object
1833*/
1834PyObject *
1835PyObject_Dir(PyObject *obj)
1836{
1837 PyObject * result;
1838
1839 if (obj == NULL)
1840 /* no object -- introspect the locals */
1841 result = _dir_locals();
1842 else
1843 /* object -- introspect the object */
1844 result = _dir_object(obj);
1845
1846 assert(result == NULL || PyList_Check(result));
1847
1848 if (result != NULL && PyList_Sort(result) != 0) {
1849 /* sorting the list failed */
1850 Py_DECREF(result);
1851 result = NULL;
1852 }
1853
Tim Peters7eea37e2001-09-04 22:08:56 +00001854 return result;
1855}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001856
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001857/*
1858NoObject is usable as a non-NULL undefined value, used by the macro None.
1859There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001860so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001861(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001862*/
1863
Guido van Rossum0c182a11992-03-27 17:26:13 +00001864/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001865static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001866none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001867{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001868 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001869}
1870
Barry Warsaw9bf16442001-01-23 16:24:35 +00001871/* ARGUSED */
1872static void
Tim Peters803526b2002-07-07 05:13:56 +00001873none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001874{
1875 /* This should never get called, but we also don't want to SEGV if
1876 * we accidently decref None out of existance.
1877 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001878 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001879}
1880
1881
Guido van Rossumba21a492001-08-16 08:17:26 +00001882static PyTypeObject PyNone_Type = {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001883 PyObject_HEAD_INIT(&PyType_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001884 0,
Guido van Rossumba21a492001-08-16 08:17:26 +00001885 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001886 0,
1887 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001888 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001889 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001890 0, /*tp_getattr*/
1891 0, /*tp_setattr*/
1892 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001893 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001894 0, /*tp_as_number*/
1895 0, /*tp_as_sequence*/
1896 0, /*tp_as_mapping*/
Guido van Rossum9bfef441993-03-29 10:43:31 +00001897 0, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001898};
1899
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001900PyObject _Py_NoneStruct = {
Guido van Rossumba21a492001-08-16 08:17:26 +00001901 PyObject_HEAD_INIT(&PyNone_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001902};
1903
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001904/* NotImplemented is an object that can be used to signal that an
1905 operation is not implemented for the given type combination. */
1906
1907static PyObject *
1908NotImplemented_repr(PyObject *op)
1909{
1910 return PyString_FromString("NotImplemented");
1911}
1912
1913static PyTypeObject PyNotImplemented_Type = {
1914 PyObject_HEAD_INIT(&PyType_Type)
1915 0,
Guido van Rossumba21a492001-08-16 08:17:26 +00001916 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001917 0,
1918 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001919 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001920 0, /*tp_print*/
1921 0, /*tp_getattr*/
1922 0, /*tp_setattr*/
1923 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001924 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001925 0, /*tp_as_number*/
1926 0, /*tp_as_sequence*/
1927 0, /*tp_as_mapping*/
1928 0, /*tp_hash */
1929};
1930
1931PyObject _Py_NotImplementedStruct = {
1932 PyObject_HEAD_INIT(&PyNotImplemented_Type)
1933};
1934
Guido van Rossumba21a492001-08-16 08:17:26 +00001935void
1936_Py_ReadyTypes(void)
1937{
1938 if (PyType_Ready(&PyType_Type) < 0)
1939 Py_FatalError("Can't initialize 'type'");
1940
Fred Drake0a4dd392004-07-02 18:57:45 +00001941 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1942 Py_FatalError("Can't initialize 'weakref'");
1943
Guido van Rossum77f6a652002-04-03 22:41:51 +00001944 if (PyType_Ready(&PyBool_Type) < 0)
1945 Py_FatalError("Can't initialize 'bool'");
1946
Guido van Rossumcacfc072002-05-24 19:01:59 +00001947 if (PyType_Ready(&PyString_Type) < 0)
1948 Py_FatalError("Can't initialize 'str'");
1949
Guido van Rossumba21a492001-08-16 08:17:26 +00001950 if (PyType_Ready(&PyList_Type) < 0)
1951 Py_FatalError("Can't initialize 'list'");
1952
1953 if (PyType_Ready(&PyNone_Type) < 0)
1954 Py_FatalError("Can't initialize type(None)");
1955
1956 if (PyType_Ready(&PyNotImplemented_Type) < 0)
1957 Py_FatalError("Can't initialize type(NotImplemented)");
1958}
1959
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001960
Guido van Rossum84a90321996-05-22 16:34:47 +00001961#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001962
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001963void
Fred Drake100814d2000-07-09 15:48:49 +00001964_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001965{
Tim Peters34592512002-07-11 06:23:50 +00001966 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001967 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00001968 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00001969 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001970}
1971
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001972void
Fred Drake100814d2000-07-09 15:48:49 +00001973_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001974{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001975#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00001976 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001977#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00001978 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001979 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001980 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00001981 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001982 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001983#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00001984 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1985 if (p == op)
1986 break;
1987 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00001988 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001989 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001990#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001991 op->_ob_next->_ob_prev = op->_ob_prev;
1992 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001993 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00001994 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001995}
1996
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001997void
Fred Drake100814d2000-07-09 15:48:49 +00001998_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001999{
Guido van Rossum9776adf1994-09-07 14:36:45 +00002000 destructor dealloc = op->ob_type->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002001 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002002 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002003}
2004
Tim Peters269b2a62003-04-17 19:52:29 +00002005/* Print all live objects. Because PyObject_Print is called, the
2006 * interpreter must be in a healthy state.
2007 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002008void
Fred Drake100814d2000-07-09 15:48:49 +00002009_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002010{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002011 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002012 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002013 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002014 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002015 if (PyObject_Print(op, fp, 0) != 0)
2016 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002017 putc('\n', fp);
2018 }
2019}
2020
Tim Peters269b2a62003-04-17 19:52:29 +00002021/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2022 * doesn't make any calls to the Python C API, so is always safe to call.
2023 */
2024void
2025_Py_PrintReferenceAddresses(FILE *fp)
2026{
2027 PyObject *op;
2028 fprintf(fp, "Remaining object addresses:\n");
2029 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002030 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
2031 op->ob_refcnt, op->ob_type->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002032}
2033
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002034PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002035_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002036{
2037 int i, n;
2038 PyObject *t = NULL;
2039 PyObject *res, *op;
2040
2041 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2042 return NULL;
2043 op = refchain._ob_next;
2044 res = PyList_New(0);
2045 if (res == NULL)
2046 return NULL;
2047 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2048 while (op == self || op == args || op == res || op == t ||
Guido van Rossum3c296022001-07-14 17:58:00 +00002049 (t != NULL && op->ob_type != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002050 op = op->_ob_next;
2051 if (op == &refchain)
2052 return res;
2053 }
2054 if (PyList_Append(res, op) < 0) {
2055 Py_DECREF(res);
2056 return NULL;
2057 }
2058 op = op->_ob_next;
2059 }
2060 return res;
2061}
2062
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002063#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002064
2065
2066/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002067PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002068
2069
2070/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002071Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002072
2073
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002074/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002075
Thomas Wouters334fb892000-07-25 12:56:38 +00002076void *
Fred Drake100814d2000-07-09 15:48:49 +00002077PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002078{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002079 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002080}
2081
Thomas Wouters334fb892000-07-25 12:56:38 +00002082void *
2083PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002084{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002085 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002086}
2087
2088void
Thomas Wouters334fb892000-07-25 12:56:38 +00002089PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002090{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002091 PyMem_FREE(p);
2092}
2093
2094
Guido van Rossum86610361998-04-10 22:32:46 +00002095/* These methods are used to control infinite recursion in repr, str, print,
2096 etc. Container objects that may recursively contain themselves,
2097 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2098 Py_ReprLeave() to avoid infinite recursion.
2099
2100 Py_ReprEnter() returns 0 the first time it is called for a particular
2101 object and 1 every time thereafter. It returns -1 if an exception
2102 occurred. Py_ReprLeave() has no return value.
2103
2104 See dictobject.c and listobject.c for examples of use.
2105*/
2106
2107#define KEY "Py_Repr"
2108
2109int
Fred Drake100814d2000-07-09 15:48:49 +00002110Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002111{
2112 PyObject *dict;
2113 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002114 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002115
2116 dict = PyThreadState_GetDict();
2117 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002118 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002119 list = PyDict_GetItemString(dict, KEY);
2120 if (list == NULL) {
2121 list = PyList_New(0);
2122 if (list == NULL)
2123 return -1;
2124 if (PyDict_SetItemString(dict, KEY, list) < 0)
2125 return -1;
2126 Py_DECREF(list);
2127 }
2128 i = PyList_GET_SIZE(list);
2129 while (--i >= 0) {
2130 if (PyList_GET_ITEM(list, i) == obj)
2131 return 1;
2132 }
2133 PyList_Append(list, obj);
2134 return 0;
2135}
2136
2137void
Fred Drake100814d2000-07-09 15:48:49 +00002138Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002139{
2140 PyObject *dict;
2141 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002142 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002143
2144 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002145 if (dict == NULL)
2146 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002147 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002148 if (list == NULL || !PyList_Check(list))
2149 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002150 i = PyList_GET_SIZE(list);
2151 /* Count backwards because we always expect obj to be list[-1] */
2152 while (--i >= 0) {
2153 if (PyList_GET_ITEM(list, i) == obj) {
2154 PyList_SetSlice(list, i, i + 1, NULL);
2155 break;
2156 }
2157 }
2158}
Guido van Rossumd724b232000-03-13 16:01:29 +00002159
Tim Peters803526b2002-07-07 05:13:56 +00002160/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002161
Tim Peters803526b2002-07-07 05:13:56 +00002162/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002163int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002164
Tim Peters803526b2002-07-07 05:13:56 +00002165/* List of objects that still need to be cleaned up, singly linked via their
2166 * gc headers' gc_prev pointers.
2167 */
2168PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002169
Tim Peters803526b2002-07-07 05:13:56 +00002170/* Add op to the _PyTrash_delete_later list. Called when the current
2171 * call-stack depth gets large. op must be a currently untracked gc'ed
2172 * object, with refcount 0. Py_DECREF must already have been called on it.
2173 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002174void
Fred Drake100814d2000-07-09 15:48:49 +00002175_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002176{
Tim Peters803526b2002-07-07 05:13:56 +00002177 assert(PyObject_IS_GC(op));
2178 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2179 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002180 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002181 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002182}
2183
Tim Peters803526b2002-07-07 05:13:56 +00002184/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2185 * the call-stack unwinds again.
2186 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002187void
Fred Drake100814d2000-07-09 15:48:49 +00002188_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002189{
2190 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002191 PyObject *op = _PyTrash_delete_later;
2192 destructor dealloc = op->ob_type->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002193
Neil Schemenauerf589c052002-03-29 03:05:54 +00002194 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002195 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002196
Tim Peters803526b2002-07-07 05:13:56 +00002197 /* Call the deallocator directly. This used to try to
2198 * fool Py_DECREF into calling it indirectly, but
2199 * Py_DECREF was already called on this object, and in
2200 * assorted non-release builds calling Py_DECREF again ends
2201 * up distorting allocation statistics.
2202 */
2203 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002204 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002205 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002206 --_PyTrash_delete_nesting;
2207 }
2208}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002209
2210#ifdef __cplusplus
2211}
2212#endif