blob: d88ae3b94f3e7d49928a4dfe5d3ba4adfa3c902b [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Benjamin Peterson722954a2011-06-11 16:33:35 -05002/* Generic object operations; and implementation of None */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Benjamin Petersonfd838e62009-04-20 02:09:13 +00005#include "frameobject.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00007#ifdef __cplusplus
8extern "C" {
9#endif
10
Victor Stinnerbd303c12013-11-07 23:07:29 +010011_Py_IDENTIFIER(Py_Repr);
12_Py_IDENTIFIER(__bytes__);
13_Py_IDENTIFIER(__dir__);
14_Py_IDENTIFIER(__isabstractmethod__);
15_Py_IDENTIFIER(builtins);
16
Tim Peters34592512002-07-11 06:23:50 +000017#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000018Py_ssize_t _Py_RefTotal;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000019
20Py_ssize_t
21_Py_GetRefTotal(void)
22{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000023 PyObject *o;
24 Py_ssize_t total = _Py_RefTotal;
Antoine Pitrou9d952542013-08-24 21:07:07 +020025 o = _PySet_Dummy;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000026 if (o != NULL)
27 total -= o->ob_refcnt;
28 return total;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000029}
Nick Coghland6009512014-11-20 21:39:37 +100030
31void
32_PyDebug_PrintTotalRefs(void) {
33 PyObject *xoptions, *value;
34 _Py_IDENTIFIER(showrefcount);
35
36 xoptions = PySys_GetXOptions();
37 if (xoptions == NULL)
38 return;
39 value = _PyDict_GetItemId(xoptions, &PyId_showrefcount);
40 if (value == Py_True)
41 fprintf(stderr,
42 "[%" PY_FORMAT_SIZE_T "d refs, "
43 "%" PY_FORMAT_SIZE_T "d blocks]\n",
44 _Py_GetRefTotal(), _Py_GetAllocatedBlocks());
45}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000046#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000047
Guido van Rossum3f5da241990-12-20 15:06:42 +000048/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
49 These are used by the individual routines for object creation.
50 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000051
Tim Peters78be7992003-03-23 02:51:01 +000052#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000053/* Head of circular doubly-linked list of all objects. These are linked
54 * together via the _ob_prev and _ob_next members of a PyObject, which
55 * exist only in a Py_TRACE_REFS build.
56 */
Tim Peters78be7992003-03-23 02:51:01 +000057static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000058
Tim Peters7571a0f2003-03-23 17:52:28 +000059/* Insert op at the front of the list of all objects. If force is true,
60 * op is added even if _ob_prev and _ob_next are non-NULL already. If
61 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
62 * force should be true if and only if op points to freshly allocated,
63 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000064 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000065 * Note that objects are normally added to the list via _Py_NewReference,
66 * which is called by PyObject_Init. Not all objects are initialized that
67 * way, though; exceptions include statically allocated type objects, and
68 * statically allocated singletons (like Py_True and Py_None).
69 */
Tim Peters36eb4df2003-03-23 03:33:13 +000070void
Tim Peters7571a0f2003-03-23 17:52:28 +000071_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000072{
Tim Peters7571a0f2003-03-23 17:52:28 +000073#ifdef Py_DEBUG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000074 if (!force) {
75 /* If it's initialized memory, op must be in or out of
76 * the list unambiguously.
77 */
78 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
79 }
Tim Peters78be7992003-03-23 02:51:01 +000080#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000081 if (force || op->_ob_prev == NULL) {
82 op->_ob_next = refchain._ob_next;
83 op->_ob_prev = &refchain;
84 refchain._ob_next->_ob_prev = op;
85 refchain._ob_next = op;
86 }
Tim Peters7571a0f2003-03-23 17:52:28 +000087}
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000088#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000089
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000090#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000091static PyTypeObject *type_list;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000092/* All types are added to type_list, at least when
93 they get one object created. That makes them
94 immortal, which unfortunately contributes to
95 garbage itself. If unlist_types_without_objects
96 is set, they will be removed from the type_list
97 once the last object is deallocated. */
Benjamin Petersona4a37fe2009-01-11 17:13:55 +000098static int unlist_types_without_objects;
99extern Py_ssize_t tuple_zero_allocs, fast_tuple_allocs;
100extern Py_ssize_t quick_int_allocs, quick_neg_int_allocs;
101extern Py_ssize_t null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000102void
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000103dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000104{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000105 PyTypeObject *tp;
Serhiy Storchaka7e160ce2016-07-03 21:03:53 +0300106 PyObject *xoptions, *value;
107 _Py_IDENTIFIER(showalloccount);
108
109 xoptions = PySys_GetXOptions();
110 if (xoptions == NULL)
111 return;
112 value = _PyDict_GetItemId(xoptions, &PyId_showalloccount);
113 if (value != Py_True)
114 return;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000115
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 for (tp = type_list; tp; tp = tp->tp_next)
117 fprintf(f, "%s alloc'd: %" PY_FORMAT_SIZE_T "d, "
118 "freed: %" PY_FORMAT_SIZE_T "d, "
119 "max in use: %" PY_FORMAT_SIZE_T "d\n",
120 tp->tp_name, tp->tp_allocs, tp->tp_frees,
121 tp->tp_maxalloc);
122 fprintf(f, "fast tuple allocs: %" PY_FORMAT_SIZE_T "d, "
123 "empty: %" PY_FORMAT_SIZE_T "d\n",
124 fast_tuple_allocs, tuple_zero_allocs);
125 fprintf(f, "fast int allocs: pos: %" PY_FORMAT_SIZE_T "d, "
126 "neg: %" PY_FORMAT_SIZE_T "d\n",
127 quick_int_allocs, quick_neg_int_allocs);
128 fprintf(f, "null strings: %" PY_FORMAT_SIZE_T "d, "
129 "1-strings: %" PY_FORMAT_SIZE_T "d\n",
130 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000131}
132
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000133PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000134get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000135{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000136 PyTypeObject *tp;
137 PyObject *result;
138 PyObject *v;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000139
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000140 result = PyList_New(0);
141 if (result == NULL)
142 return NULL;
143 for (tp = type_list; tp; tp = tp->tp_next) {
144 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
145 tp->tp_frees, tp->tp_maxalloc);
146 if (v == NULL) {
147 Py_DECREF(result);
148 return NULL;
149 }
150 if (PyList_Append(result, v) < 0) {
151 Py_DECREF(v);
152 Py_DECREF(result);
153 return NULL;
154 }
155 Py_DECREF(v);
156 }
157 return result;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000158}
159
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000160void
Fred Drake100814d2000-07-09 15:48:49 +0000161inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000162{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000163 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
164 /* first time; insert in linked list */
165 if (tp->tp_next != NULL) /* sanity check */
166 Py_FatalError("XXX inc_count sanity check");
167 if (type_list)
168 type_list->tp_prev = tp;
169 tp->tp_next = type_list;
170 /* Note that as of Python 2.2, heap-allocated type objects
171 * can go away, but this code requires that they stay alive
172 * until program exit. That's why we're careful with
173 * refcounts here. type_list gets a new reference to tp,
174 * while ownership of the reference type_list used to hold
175 * (if any) was transferred to tp->tp_next in the line above.
176 * tp is thus effectively immortal after this.
177 */
178 Py_INCREF(tp);
179 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000180#ifdef Py_TRACE_REFS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000181 /* Also insert in the doubly-linked list of all objects,
182 * if not already there.
183 */
184 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000185#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000186 }
187 tp->tp_allocs++;
188 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
189 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000190}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000191
192void dec_count(PyTypeObject *tp)
193{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 tp->tp_frees++;
195 if (unlist_types_without_objects &&
196 tp->tp_allocs == tp->tp_frees) {
197 /* unlink the type from type_list */
198 if (tp->tp_prev)
199 tp->tp_prev->tp_next = tp->tp_next;
200 else
201 type_list = tp->tp_next;
202 if (tp->tp_next)
203 tp->tp_next->tp_prev = tp->tp_prev;
204 tp->tp_next = tp->tp_prev = NULL;
205 Py_DECREF(tp);
206 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000207}
208
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000209#endif
210
Tim Peters7c321a82002-07-09 02:57:01 +0000211#ifdef Py_REF_DEBUG
212/* Log a fatal error; doesn't return. */
213void
214_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
215{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000216 char buf[300];
Tim Peters7c321a82002-07-09 02:57:01 +0000217
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000218 PyOS_snprintf(buf, sizeof(buf),
219 "%s:%i object at %p has negative ref count "
220 "%" PY_FORMAT_SIZE_T "d",
221 fname, lineno, op, op->ob_refcnt);
222 Py_FatalError(buf);
Tim Peters7c321a82002-07-09 02:57:01 +0000223}
224
225#endif /* Py_REF_DEBUG */
226
Thomas Heller1328b522004-04-22 17:23:49 +0000227void
228Py_IncRef(PyObject *o)
229{
230 Py_XINCREF(o);
231}
232
233void
234Py_DecRef(PyObject *o)
235{
236 Py_XDECREF(o);
237}
238
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000239PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000240PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000241{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000242 if (op == NULL)
243 return PyErr_NoMemory();
244 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
245 Py_TYPE(op) = tp;
246 _Py_NewReference(op);
247 return op;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000248}
249
Guido van Rossumb18618d2000-05-03 23:44:39 +0000250PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000251PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000252{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000253 if (op == NULL)
254 return (PyVarObject *) PyErr_NoMemory();
255 /* Any changes should be reflected in PyObject_INIT_VAR */
256 op->ob_size = size;
257 Py_TYPE(op) = tp;
258 _Py_NewReference((PyObject *)op);
259 return op;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000260}
261
262PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000263_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000264{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000265 PyObject *op;
266 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
267 if (op == NULL)
268 return PyErr_NoMemory();
269 return PyObject_INIT(op, tp);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000270}
271
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000272PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000273_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000274{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000275 PyVarObject *op;
276 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
277 op = (PyVarObject *) PyObject_MALLOC(size);
278 if (op == NULL)
279 return (PyVarObject *)PyErr_NoMemory();
280 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000281}
282
Antoine Pitrou796564c2013-07-30 19:59:21 +0200283void
284PyObject_CallFinalizer(PyObject *self)
285{
286 PyTypeObject *tp = Py_TYPE(self);
287
288 /* The former could happen on heaptypes created from the C API, e.g.
289 PyType_FromSpec(). */
290 if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_FINALIZE) ||
291 tp->tp_finalize == NULL)
292 return;
293 /* tp_finalize should only be called once. */
294 if (PyType_IS_GC(tp) && _PyGC_FINALIZED(self))
295 return;
296
297 tp->tp_finalize(self);
298 if (PyType_IS_GC(tp))
299 _PyGC_SET_FINALIZED(self, 1);
300}
301
302int
303PyObject_CallFinalizerFromDealloc(PyObject *self)
304{
305 Py_ssize_t refcnt;
306
307 /* Temporarily resurrect the object. */
308 if (self->ob_refcnt != 0) {
309 Py_FatalError("PyObject_CallFinalizerFromDealloc called on "
310 "object with a non-zero refcount");
311 }
312 self->ob_refcnt = 1;
313
314 PyObject_CallFinalizer(self);
315
316 /* Undo the temporary resurrection; can't use DECREF here, it would
317 * cause a recursive call.
318 */
319 assert(self->ob_refcnt > 0);
320 if (--self->ob_refcnt == 0)
321 return 0; /* this is the normal path out */
322
323 /* tp_finalize resurrected it! Make it look like the original Py_DECREF
324 * never happened.
325 */
326 refcnt = self->ob_refcnt;
327 _Py_NewReference(self);
328 self->ob_refcnt = refcnt;
329
330 if (PyType_IS_GC(Py_TYPE(self))) {
331 assert(_PyGC_REFS(self) != _PyGC_REFS_UNTRACKED);
332 }
333 /* If Py_REF_DEBUG, _Py_NewReference bumped _Py_RefTotal, so
334 * we need to undo that. */
335 _Py_DEC_REFTOTAL;
336 /* If Py_TRACE_REFS, _Py_NewReference re-added self to the object
337 * chain, so no more to do there.
338 * If COUNT_ALLOCS, the original decref bumped tp_frees, and
339 * _Py_NewReference bumped tp_allocs: both of those need to be
340 * undone.
341 */
342#ifdef COUNT_ALLOCS
343 --Py_TYPE(self)->tp_frees;
344 --Py_TYPE(self)->tp_allocs;
345#endif
346 return -1;
347}
348
Antoine Pitrouc47bd4a2010-07-27 22:08:27 +0000349int
350PyObject_Print(PyObject *op, FILE *fp, int flags)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000351{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 int ret = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000353 if (PyErr_CheckSignals())
354 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000355#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000356 if (PyOS_CheckStack()) {
357 PyErr_SetString(PyExc_MemoryError, "stack overflow");
358 return -1;
359 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000360#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000361 clearerr(fp); /* Clear any previous error condition */
362 if (op == NULL) {
363 Py_BEGIN_ALLOW_THREADS
364 fprintf(fp, "<nil>");
365 Py_END_ALLOW_THREADS
366 }
367 else {
368 if (op->ob_refcnt <= 0)
369 /* XXX(twouters) cast refcount to long until %zd is
370 universally available */
371 Py_BEGIN_ALLOW_THREADS
372 fprintf(fp, "<refcnt %ld at %p>",
373 (long)op->ob_refcnt, op);
374 Py_END_ALLOW_THREADS
375 else {
376 PyObject *s;
377 if (flags & Py_PRINT_RAW)
378 s = PyObject_Str(op);
379 else
380 s = PyObject_Repr(op);
381 if (s == NULL)
382 ret = -1;
383 else if (PyBytes_Check(s)) {
384 fwrite(PyBytes_AS_STRING(s), 1,
385 PyBytes_GET_SIZE(s), fp);
386 }
387 else if (PyUnicode_Check(s)) {
388 PyObject *t;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200389 t = PyUnicode_AsEncodedString(s, "utf-8", "backslashreplace");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000390 if (t == NULL)
391 ret = 0;
392 else {
393 fwrite(PyBytes_AS_STRING(t), 1,
394 PyBytes_GET_SIZE(t), fp);
Victor Stinnerba6b4302010-05-17 09:33:42 +0000395 Py_DECREF(t);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000396 }
397 }
398 else {
399 PyErr_Format(PyExc_TypeError,
400 "str() or repr() returned '%.100s'",
401 s->ob_type->tp_name);
402 ret = -1;
403 }
404 Py_XDECREF(s);
405 }
406 }
407 if (ret == 0) {
408 if (ferror(fp)) {
409 PyErr_SetFromErrno(PyExc_IOError);
410 clearerr(fp);
411 ret = -1;
412 }
413 }
414 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000415}
416
Guido van Rossum38938152006-08-21 23:36:26 +0000417/* For debugging convenience. Set a breakpoint here and call it from your DLL */
418void
Thomas Woutersb2137042007-02-01 18:02:27 +0000419_Py_BreakPoint(void)
Guido van Rossum38938152006-08-21 23:36:26 +0000420{
421}
422
Neal Norwitz1a997502003-01-13 20:13:12 +0000423
Barry Warsaw9bf16442001-01-23 16:24:35 +0000424/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Guido van Rossum38938152006-08-21 23:36:26 +0000425void
426_PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000427{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000428 if (op == NULL)
429 fprintf(stderr, "NULL\n");
430 else {
Georg Brandldfd73442009-04-05 11:47:34 +0000431#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 PyGILState_STATE gil;
Georg Brandldfd73442009-04-05 11:47:34 +0000433#endif
Victor Stinnere5132102013-08-26 13:49:06 +0200434 PyObject *error_type, *error_value, *error_traceback;
435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 fprintf(stderr, "object : ");
Georg Brandldfd73442009-04-05 11:47:34 +0000437#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000438 gil = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000439#endif
Victor Stinnere5132102013-08-26 13:49:06 +0200440
441 PyErr_Fetch(&error_type, &error_value, &error_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 (void)PyObject_Print(op, stderr, 0);
Victor Stinnere5132102013-08-26 13:49:06 +0200443 PyErr_Restore(error_type, error_value, error_traceback);
444
Georg Brandldfd73442009-04-05 11:47:34 +0000445#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000446 PyGILState_Release(gil);
Georg Brandldfd73442009-04-05 11:47:34 +0000447#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000448 /* XXX(twouters) cast refcount to long until %zd is
449 universally available */
450 fprintf(stderr, "\n"
451 "type : %s\n"
452 "refcount: %ld\n"
453 "address : %p\n",
454 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
455 (long)op->ob_refcnt,
456 op);
457 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000458}
Barry Warsaw903138f2001-01-23 16:33:18 +0000459
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000460PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000461PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000462{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000463 PyObject *res;
464 if (PyErr_CheckSignals())
465 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000466#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000467 if (PyOS_CheckStack()) {
468 PyErr_SetString(PyExc_MemoryError, "stack overflow");
469 return NULL;
470 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000471#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000472 if (v == NULL)
473 return PyUnicode_FromString("<NULL>");
474 if (Py_TYPE(v)->tp_repr == NULL)
475 return PyUnicode_FromFormat("<%s object at %p>",
476 v->ob_type->tp_name, v);
Victor Stinner33824f62013-08-26 14:05:19 +0200477
478#ifdef Py_DEBUG
479 /* PyObject_Repr() must not be called with an exception set,
480 because it may clear it (directly or indirectly) and so the
Martin Panter9955a372015-10-07 10:26:23 +0000481 caller loses its exception */
Victor Stinner33824f62013-08-26 14:05:19 +0200482 assert(!PyErr_Occurred());
483#endif
484
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000485 res = (*v->ob_type->tp_repr)(v);
Victor Stinner0a54cf12011-12-01 03:22:44 +0100486 if (res == NULL)
487 return NULL;
488 if (!PyUnicode_Check(res)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000489 PyErr_Format(PyExc_TypeError,
490 "__repr__ returned non-string (type %.200s)",
491 res->ob_type->tp_name);
492 Py_DECREF(res);
493 return NULL;
494 }
Victor Stinnerdb88ae52011-12-01 02:15:00 +0100495#ifndef Py_DEBUG
496 if (PyUnicode_READY(res) < 0)
497 return NULL;
498#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000499 return res;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000500}
501
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000502PyObject *
Guido van Rossum98297ee2007-11-06 21:34:58 +0000503PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000504{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000505 PyObject *res;
506 if (PyErr_CheckSignals())
507 return NULL;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000508#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 if (PyOS_CheckStack()) {
510 PyErr_SetString(PyExc_MemoryError, "stack overflow");
511 return NULL;
512 }
Guido van Rossum98297ee2007-11-06 21:34:58 +0000513#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 if (v == NULL)
515 return PyUnicode_FromString("<NULL>");
516 if (PyUnicode_CheckExact(v)) {
Victor Stinnerdb88ae52011-12-01 02:15:00 +0100517#ifndef Py_DEBUG
Victor Stinner4ead7c72011-11-20 19:48:36 +0100518 if (PyUnicode_READY(v) < 0)
519 return NULL;
Victor Stinnerdb88ae52011-12-01 02:15:00 +0100520#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000521 Py_INCREF(v);
522 return v;
523 }
524 if (Py_TYPE(v)->tp_str == NULL)
525 return PyObject_Repr(v);
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000526
Victor Stinner33824f62013-08-26 14:05:19 +0200527#ifdef Py_DEBUG
528 /* PyObject_Str() must not be called with an exception set,
529 because it may clear it (directly or indirectly) and so the
Nick Coghland979e432014-02-09 10:43:21 +1000530 caller loses its exception */
Victor Stinner33824f62013-08-26 14:05:19 +0200531 assert(!PyErr_Occurred());
532#endif
533
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 /* It is possible for a type to have a tp_str representation that loops
535 infinitely. */
536 if (Py_EnterRecursiveCall(" while getting the str of an object"))
537 return NULL;
538 res = (*Py_TYPE(v)->tp_str)(v);
539 Py_LeaveRecursiveCall();
540 if (res == NULL)
541 return NULL;
542 if (!PyUnicode_Check(res)) {
543 PyErr_Format(PyExc_TypeError,
544 "__str__ returned non-string (type %.200s)",
545 Py_TYPE(res)->tp_name);
546 Py_DECREF(res);
547 return NULL;
548 }
Victor Stinnerdb88ae52011-12-01 02:15:00 +0100549#ifndef Py_DEBUG
Victor Stinner4ead7c72011-11-20 19:48:36 +0100550 if (PyUnicode_READY(res) < 0)
551 return NULL;
Victor Stinnerdb88ae52011-12-01 02:15:00 +0100552#endif
Victor Stinner4ead7c72011-11-20 19:48:36 +0100553 assert(_PyUnicode_CheckConsistency(res, 1));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000554 return res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000555}
556
Georg Brandl559e5d72008-06-11 18:37:52 +0000557PyObject *
558PyObject_ASCII(PyObject *v)
559{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 PyObject *repr, *ascii, *res;
Georg Brandl559e5d72008-06-11 18:37:52 +0000561
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000562 repr = PyObject_Repr(v);
563 if (repr == NULL)
564 return NULL;
Georg Brandl559e5d72008-06-11 18:37:52 +0000565
Victor Stinneraf037572013-04-14 18:44:10 +0200566 if (PyUnicode_IS_ASCII(repr))
567 return repr;
568
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000569 /* repr is guaranteed to be a PyUnicode object by PyObject_Repr */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200570 ascii = _PyUnicode_AsASCIIString(repr, "backslashreplace");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000571 Py_DECREF(repr);
572 if (ascii == NULL)
573 return NULL;
Georg Brandl559e5d72008-06-11 18:37:52 +0000574
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000575 res = PyUnicode_DecodeASCII(
576 PyBytes_AS_STRING(ascii),
577 PyBytes_GET_SIZE(ascii),
578 NULL);
579
580 Py_DECREF(ascii);
581 return res;
Georg Brandl559e5d72008-06-11 18:37:52 +0000582}
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000583
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000584PyObject *
585PyObject_Bytes(PyObject *v)
586{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000587 PyObject *result, *func;
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000588
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 if (v == NULL)
590 return PyBytes_FromString("<NULL>");
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000591
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000592 if (PyBytes_CheckExact(v)) {
593 Py_INCREF(v);
594 return v;
595 }
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000596
Benjamin Petersonce798522012-01-22 11:24:29 -0500597 func = _PyObject_LookupSpecial(v, &PyId___bytes__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000598 if (func != NULL) {
599 result = PyObject_CallFunctionObjArgs(func, NULL);
600 Py_DECREF(func);
601 if (result == NULL)
Benjamin Peterson41ece392010-09-11 16:39:57 +0000602 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000603 if (!PyBytes_Check(result)) {
Benjamin Peterson41ece392010-09-11 16:39:57 +0000604 PyErr_Format(PyExc_TypeError,
605 "__bytes__ returned non-bytes (type %.200s)",
606 Py_TYPE(result)->tp_name);
607 Py_DECREF(result);
608 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000609 }
610 return result;
611 }
612 else if (PyErr_Occurred())
613 return NULL;
614 return PyBytes_FromObject(v);
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000615}
616
Mark Dickinsonc008a172009-02-01 13:59:22 +0000617/* For Python 3.0.1 and later, the old three-way comparison has been
618 completely removed in favour of rich comparisons. PyObject_Compare() and
619 PyObject_Cmp() are gone, and the builtin cmp function no longer exists.
Mark Dickinsone94c6792009-02-02 20:36:42 +0000620 The old tp_compare slot has been renamed to tp_reserved, and should no
Mark Dickinsonc008a172009-02-01 13:59:22 +0000621 longer be used. Use tp_richcompare instead.
Guido van Rossum98297ee2007-11-06 21:34:58 +0000622
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000623 See (*) below for practical amendments.
624
Mark Dickinsonc008a172009-02-01 13:59:22 +0000625 tp_richcompare gets called with a first argument of the appropriate type
626 and a second object of an arbitrary type. We never do any kind of
627 coercion.
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000628
Mark Dickinsonc008a172009-02-01 13:59:22 +0000629 The tp_richcompare slot should return an object, as follows:
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000630
631 NULL if an exception occurred
632 NotImplemented if the requested comparison is not implemented
633 any other false value if the requested comparison is false
634 any other true value if the requested comparison is true
635
636 The PyObject_RichCompare[Bool]() wrappers raise TypeError when they get
637 NotImplemented.
638
639 (*) Practical amendments:
640
641 - If rich comparison returns NotImplemented, == and != are decided by
642 comparing the object pointer (i.e. falling back to the base object
643 implementation).
644
Guido van Rossuma4073002002-05-31 20:03:54 +0000645*/
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000646
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000647/* Map rich comparison operators to their swapped version, e.g. LT <--> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000648int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000649
Serhiy Storchaka2d06e842015-12-25 19:53:18 +0200650static const char * const opstrings[] = {"<", "<=", "==", "!=", ">", ">="};
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000651
652/* Perform a rich comparison, raising TypeError when the requested comparison
653 operator is not supported. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000654static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000655do_richcompare(PyObject *v, PyObject *w, int op)
Guido van Rossume797ec12001-01-17 15:24:28 +0000656{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000657 richcmpfunc f;
658 PyObject *res;
659 int checked_reverse_op = 0;
Guido van Rossume797ec12001-01-17 15:24:28 +0000660
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000661 if (v->ob_type != w->ob_type &&
662 PyType_IsSubtype(w->ob_type, v->ob_type) &&
663 (f = w->ob_type->tp_richcompare) != NULL) {
664 checked_reverse_op = 1;
665 res = (*f)(w, v, _Py_SwappedOp[op]);
666 if (res != Py_NotImplemented)
667 return res;
668 Py_DECREF(res);
669 }
670 if ((f = v->ob_type->tp_richcompare) != NULL) {
671 res = (*f)(v, w, op);
672 if (res != Py_NotImplemented)
673 return res;
674 Py_DECREF(res);
675 }
676 if (!checked_reverse_op && (f = w->ob_type->tp_richcompare) != NULL) {
677 res = (*f)(w, v, _Py_SwappedOp[op]);
678 if (res != Py_NotImplemented)
679 return res;
680 Py_DECREF(res);
681 }
682 /* If neither object implements it, provide a sensible default
683 for == and !=, but raise an exception for ordering. */
684 switch (op) {
685 case Py_EQ:
686 res = (v == w) ? Py_True : Py_False;
687 break;
688 case Py_NE:
689 res = (v != w) ? Py_True : Py_False;
690 break;
691 default:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 PyErr_Format(PyExc_TypeError,
Victor Stinner91108f02015-10-14 18:25:31 +0200693 "'%s' not supported between instances of '%.100s' and '%.100s'",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000694 opstrings[op],
Victor Stinner91108f02015-10-14 18:25:31 +0200695 v->ob_type->tp_name,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000696 w->ob_type->tp_name);
697 return NULL;
698 }
699 Py_INCREF(res);
700 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000701}
702
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000703/* Perform a rich comparison with object result. This wraps do_richcompare()
704 with a check for NULL arguments and a recursion check. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000705
Guido van Rossume797ec12001-01-17 15:24:28 +0000706PyObject *
707PyObject_RichCompare(PyObject *v, PyObject *w, int op)
708{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000709 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000710
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000711 assert(Py_LT <= op && op <= Py_GE);
712 if (v == NULL || w == NULL) {
713 if (!PyErr_Occurred())
714 PyErr_BadInternalCall();
715 return NULL;
716 }
717 if (Py_EnterRecursiveCall(" in comparison"))
718 return NULL;
719 res = do_richcompare(v, w, op);
720 Py_LeaveRecursiveCall();
721 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000722}
723
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000724/* Perform a rich comparison with integer result. This wraps
725 PyObject_RichCompare(), returning -1 for error, 0 for false, 1 for true. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000726int
727PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
728{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000729 PyObject *res;
730 int ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000731
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000732 /* Quick result when objects are the same.
733 Guarantees that identity implies equality. */
734 if (v == w) {
735 if (op == Py_EQ)
736 return 1;
737 else if (op == Py_NE)
738 return 0;
739 }
Mark Dickinson4a1f5932008-11-12 23:23:36 +0000740
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000741 res = PyObject_RichCompare(v, w, op);
742 if (res == NULL)
743 return -1;
744 if (PyBool_Check(res))
745 ok = (res == Py_True);
746 else
747 ok = PyObject_IsTrue(res);
748 Py_DECREF(res);
749 return ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000750}
Fred Drake13634cf2000-06-29 19:17:04 +0000751
Antoine Pitrouce4a9da2011-11-21 20:46:33 +0100752Py_hash_t
Nick Coghland1abd252008-07-15 15:46:38 +0000753PyObject_HashNotImplemented(PyObject *v)
754{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000755 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
756 Py_TYPE(v)->tp_name);
757 return -1;
Nick Coghland1abd252008-07-15 15:46:38 +0000758}
Fred Drake13634cf2000-06-29 19:17:04 +0000759
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000760Py_hash_t
Fred Drake100814d2000-07-09 15:48:49 +0000761PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +0000762{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000763 PyTypeObject *tp = Py_TYPE(v);
764 if (tp->tp_hash != NULL)
765 return (*tp->tp_hash)(v);
766 /* To keep to the general practice that inheriting
767 * solely from object in C code should work without
768 * an explicit call to PyType_Ready, we implicitly call
769 * PyType_Ready here and then check the tp_hash slot again
770 */
771 if (tp->tp_dict == NULL) {
772 if (PyType_Ready(tp) < 0)
773 return -1;
774 if (tp->tp_hash != NULL)
775 return (*tp->tp_hash)(v);
776 }
777 /* Otherwise, the object can't be hashed */
778 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +0000779}
780
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000781PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000782PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000783{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000784 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +0000785
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000786 if (Py_TYPE(v)->tp_getattr != NULL)
787 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
788 w = PyUnicode_InternFromString(name);
789 if (w == NULL)
790 return NULL;
791 res = PyObject_GetAttr(v, w);
Victor Stinner59af08f2012-03-22 02:09:08 +0100792 Py_DECREF(w);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000793 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000794}
795
796int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000797PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +0000798{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000799 PyObject *res = PyObject_GetAttrString(v, name);
800 if (res != NULL) {
801 Py_DECREF(res);
802 return 1;
803 }
804 PyErr_Clear();
805 return 0;
Guido van Rossumed18fdc1993-07-11 19:55:34 +0000806}
807
808int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000809PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000810{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000811 PyObject *s;
812 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +0000813
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000814 if (Py_TYPE(v)->tp_setattr != NULL)
815 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
816 s = PyUnicode_InternFromString(name);
817 if (s == NULL)
818 return -1;
819 res = PyObject_SetAttr(v, s, w);
820 Py_XDECREF(s);
821 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000822}
823
Benjamin Petersonbfebb7b2011-12-15 15:34:02 -0500824int
825_PyObject_IsAbstract(PyObject *obj)
826{
827 int res;
828 PyObject* isabstract;
Benjamin Petersonbfebb7b2011-12-15 15:34:02 -0500829
830 if (obj == NULL)
831 return 0;
832
833 isabstract = _PyObject_GetAttrId(obj, &PyId___isabstractmethod__);
834 if (isabstract == NULL) {
835 if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
836 PyErr_Clear();
837 return 0;
838 }
839 return -1;
840 }
841 res = PyObject_IsTrue(isabstract);
842 Py_DECREF(isabstract);
843 return res;
844}
845
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000846PyObject *
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200847_PyObject_GetAttrId(PyObject *v, _Py_Identifier *name)
848{
849 PyObject *result;
Martin v. Löwisd10759f2011-11-07 13:00:05 +0100850 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200851 if (!oname)
852 return NULL;
853 result = PyObject_GetAttr(v, oname);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200854 return result;
855}
856
857int
858_PyObject_HasAttrId(PyObject *v, _Py_Identifier *name)
859{
860 int result;
Martin v. Löwisd10759f2011-11-07 13:00:05 +0100861 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200862 if (!oname)
863 return -1;
864 result = PyObject_HasAttr(v, oname);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200865 return result;
866}
867
868int
869_PyObject_SetAttrId(PyObject *v, _Py_Identifier *name, PyObject *w)
870{
871 int result;
Martin v. Löwisd10759f2011-11-07 13:00:05 +0100872 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200873 if (!oname)
874 return -1;
875 result = PyObject_SetAttr(v, oname, w);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200876 return result;
877}
878
879PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000880PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000881{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000882 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000883
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000884 if (!PyUnicode_Check(name)) {
885 PyErr_Format(PyExc_TypeError,
886 "attribute name must be string, not '%.200s'",
887 name->ob_type->tp_name);
888 return NULL;
889 }
890 if (tp->tp_getattro != NULL)
891 return (*tp->tp_getattro)(v, name);
892 if (tp->tp_getattr != NULL) {
Serhiy Storchaka06515832016-11-20 09:13:07 +0200893 char *name_str = PyUnicode_AsUTF8(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000894 if (name_str == NULL)
895 return NULL;
896 return (*tp->tp_getattr)(v, name_str);
897 }
898 PyErr_Format(PyExc_AttributeError,
899 "'%.50s' object has no attribute '%U'",
900 tp->tp_name, name);
901 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000902}
903
904int
Fred Drake100814d2000-07-09 15:48:49 +0000905PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000906{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000907 PyObject *res = PyObject_GetAttr(v, name);
908 if (res != NULL) {
909 Py_DECREF(res);
910 return 1;
911 }
912 PyErr_Clear();
913 return 0;
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000914}
915
916int
Fred Drake100814d2000-07-09 15:48:49 +0000917PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000918{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000919 PyTypeObject *tp = Py_TYPE(v);
920 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +0000921
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000922 if (!PyUnicode_Check(name)) {
923 PyErr_Format(PyExc_TypeError,
924 "attribute name must be string, not '%.200s'",
925 name->ob_type->tp_name);
926 return -1;
927 }
928 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000929
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000930 PyUnicode_InternInPlace(&name);
931 if (tp->tp_setattro != NULL) {
932 err = (*tp->tp_setattro)(v, name, value);
933 Py_DECREF(name);
934 return err;
935 }
936 if (tp->tp_setattr != NULL) {
Serhiy Storchaka06515832016-11-20 09:13:07 +0200937 char *name_str = PyUnicode_AsUTF8(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000938 if (name_str == NULL)
939 return -1;
940 err = (*tp->tp_setattr)(v, name_str, value);
941 Py_DECREF(name);
942 return err;
943 }
944 Py_DECREF(name);
945 assert(name->ob_refcnt >= 1);
946 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
947 PyErr_Format(PyExc_TypeError,
948 "'%.100s' object has no attributes "
949 "(%s .%U)",
950 tp->tp_name,
951 value==NULL ? "del" : "assign to",
952 name);
953 else
954 PyErr_Format(PyExc_TypeError,
955 "'%.100s' object has only read-only attributes "
956 "(%s .%U)",
957 tp->tp_name,
958 value==NULL ? "del" : "assign to",
959 name);
960 return -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000961}
962
963/* Helper to get a pointer to an object's __dict__ slot, if any */
964
965PyObject **
966_PyObject_GetDictPtr(PyObject *obj)
967{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000968 Py_ssize_t dictoffset;
969 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000970
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000971 dictoffset = tp->tp_dictoffset;
972 if (dictoffset == 0)
973 return NULL;
974 if (dictoffset < 0) {
975 Py_ssize_t tsize;
976 size_t size;
Guido van Rossum2eb0b872002-03-01 22:24:49 +0000977
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000978 tsize = ((PyVarObject *)obj)->ob_size;
979 if (tsize < 0)
980 tsize = -tsize;
981 size = _PyObject_VAR_SIZE(tp, tsize);
Guido van Rossum2eb0b872002-03-01 22:24:49 +0000982
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000983 dictoffset += (long)size;
984 assert(dictoffset > 0);
985 assert(dictoffset % SIZEOF_VOID_P == 0);
986 }
987 return (PyObject **) ((char *)obj + dictoffset);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000988}
989
Tim Peters6d6c1a32001-08-02 04:15:00 +0000990PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +0000991PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +0000992{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000993 Py_INCREF(obj);
994 return obj;
Raymond Hettinger01538262003-03-17 08:24:35 +0000995}
996
Antoine Pitroua7013882012-04-05 00:04:20 +0200997/* Convenience function to get a builtin from its name */
998PyObject *
999_PyObject_GetBuiltin(const char *name)
1000{
Victor Stinner53e9ec42013-11-07 00:43:05 +01001001 PyObject *mod_name, *mod, *attr;
1002
Victor Stinnerbd303c12013-11-07 23:07:29 +01001003 mod_name = _PyUnicode_FromId(&PyId_builtins); /* borrowed */
Victor Stinner53e9ec42013-11-07 00:43:05 +01001004 if (mod_name == NULL)
1005 return NULL;
1006 mod = PyImport_Import(mod_name);
Antoine Pitroua7013882012-04-05 00:04:20 +02001007 if (mod == NULL)
1008 return NULL;
1009 attr = PyObject_GetAttrString(mod, name);
1010 Py_DECREF(mod);
1011 return attr;
1012}
1013
Amaury Forgeot d'Arcf343e012009-01-12 23:58:21 +00001014/* Helper used when the __next__ method is removed from a type:
1015 tp_iternext is never NULL and can be safely called without checking
1016 on every iteration.
1017 */
1018
1019PyObject *
1020_PyObject_NextNotImplemented(PyObject *self)
1021{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001022 PyErr_Format(PyExc_TypeError,
1023 "'%.200s' object is not iterable",
1024 Py_TYPE(self)->tp_name);
1025 return NULL;
Amaury Forgeot d'Arcf343e012009-01-12 23:58:21 +00001026}
1027
Michael W. Hudson1593f502004-09-14 17:09:47 +00001028/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1029
Raymond Hettinger01538262003-03-17 08:24:35 +00001030PyObject *
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001031_PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, PyObject *dict)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001032{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001033 PyTypeObject *tp = Py_TYPE(obj);
1034 PyObject *descr = NULL;
1035 PyObject *res = NULL;
1036 descrgetfunc f;
1037 Py_ssize_t dictoffset;
1038 PyObject **dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001039
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001040 if (!PyUnicode_Check(name)){
1041 PyErr_Format(PyExc_TypeError,
1042 "attribute name must be string, not '%.200s'",
1043 name->ob_type->tp_name);
1044 return NULL;
1045 }
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001046 Py_INCREF(name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001047
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001048 if (tp->tp_dict == NULL) {
1049 if (PyType_Ready(tp) < 0)
1050 goto done;
1051 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001052
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001053 descr = _PyType_Lookup(tp, name);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001054
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001055 f = NULL;
1056 if (descr != NULL) {
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001057 Py_INCREF(descr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001058 f = descr->ob_type->tp_descr_get;
1059 if (f != NULL && PyDescr_IsData(descr)) {
1060 res = f(descr, obj, (PyObject *)obj->ob_type);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001061 goto done;
1062 }
1063 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001064
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001065 if (dict == NULL) {
1066 /* Inline _PyObject_GetDictPtr */
1067 dictoffset = tp->tp_dictoffset;
1068 if (dictoffset != 0) {
1069 if (dictoffset < 0) {
1070 Py_ssize_t tsize;
1071 size_t size;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001072
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001073 tsize = ((PyVarObject *)obj)->ob_size;
1074 if (tsize < 0)
1075 tsize = -tsize;
1076 size = _PyObject_VAR_SIZE(tp, tsize);
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001077 assert(size <= PY_SSIZE_T_MAX);
Guido van Rossumc66ff442002-08-19 16:50:48 +00001078
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001079 dictoffset += (Py_ssize_t)size;
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001080 assert(dictoffset > 0);
1081 assert(dictoffset % SIZEOF_VOID_P == 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001082 }
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001083 dictptr = (PyObject **) ((char *)obj + dictoffset);
1084 dict = *dictptr;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001085 }
1086 }
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001087 if (dict != NULL) {
1088 Py_INCREF(dict);
1089 res = PyDict_GetItem(dict, name);
1090 if (res != NULL) {
1091 Py_INCREF(res);
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001092 Py_DECREF(dict);
1093 goto done;
1094 }
1095 Py_DECREF(dict);
1096 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001097
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001098 if (f != NULL) {
1099 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001100 goto done;
1101 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001102
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001103 if (descr != NULL) {
1104 res = descr;
Victor Stinner2d01dc02012-03-09 00:44:13 +01001105 descr = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001106 goto done;
1107 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001108
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001109 PyErr_Format(PyExc_AttributeError,
1110 "'%.50s' object has no attribute '%U'",
1111 tp->tp_name, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001112 done:
Victor Stinner2d01dc02012-03-09 00:44:13 +01001113 Py_XDECREF(descr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001114 Py_DECREF(name);
1115 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001116}
1117
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001118PyObject *
1119PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1120{
1121 return _PyObject_GenericGetAttrWithDict(obj, name, NULL);
1122}
1123
Tim Peters6d6c1a32001-08-02 04:15:00 +00001124int
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001125_PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name,
1126 PyObject *value, PyObject *dict)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001127{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001128 PyTypeObject *tp = Py_TYPE(obj);
1129 PyObject *descr;
1130 descrsetfunc f;
1131 PyObject **dictptr;
1132 int res = -1;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001133
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001134 if (!PyUnicode_Check(name)){
1135 PyErr_Format(PyExc_TypeError,
1136 "attribute name must be string, not '%.200s'",
1137 name->ob_type->tp_name);
1138 return -1;
1139 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001140
Benjamin Peterson74529ad2012-03-09 07:25:32 -08001141 if (tp->tp_dict == NULL && PyType_Ready(tp) < 0)
1142 return -1;
1143
1144 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001145
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001146 descr = _PyType_Lookup(tp, name);
Victor Stinner2d01dc02012-03-09 00:44:13 +01001147
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001148 if (descr != NULL) {
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001149 Py_INCREF(descr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001150 f = descr->ob_type->tp_descr_set;
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001151 if (f != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001152 res = f(descr, obj, value);
1153 goto done;
1154 }
1155 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001156
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001157 if (dict == NULL) {
1158 dictptr = _PyObject_GetDictPtr(obj);
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001159 if (dictptr == NULL) {
1160 if (descr == NULL) {
1161 PyErr_Format(PyExc_AttributeError,
1162 "'%.100s' object has no attribute '%U'",
1163 tp->tp_name, name);
1164 }
1165 else {
1166 PyErr_Format(PyExc_AttributeError,
1167 "'%.50s' object attribute '%U' is read-only",
1168 tp->tp_name, name);
1169 }
Benjamin Peterson7d95e402012-04-23 11:24:50 -04001170 goto done;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001171 }
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001172 res = _PyObjectDict_SetItem(tp, dictptr, name, value);
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001173 }
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001174 else {
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001175 Py_INCREF(dict);
1176 if (value == NULL)
1177 res = PyDict_DelItem(dict, name);
1178 else
1179 res = PyDict_SetItem(dict, name, value);
Benjamin Peterson74529ad2012-03-09 07:25:32 -08001180 Py_DECREF(dict);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001181 }
Serhiy Storchaka55c861f2016-04-17 20:31:51 +03001182 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1183 PyErr_SetObject(PyExc_AttributeError, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001184
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001185 done:
Victor Stinner2d01dc02012-03-09 00:44:13 +01001186 Py_XDECREF(descr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001187 Py_DECREF(name);
1188 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001189}
1190
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001191int
1192PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1193{
1194 return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL);
1195}
1196
Benjamin Peterson8eb12692012-02-19 19:59:10 -05001197int
1198PyObject_GenericSetDict(PyObject *obj, PyObject *value, void *context)
1199{
Serhiy Storchaka576f1322016-01-05 21:27:54 +02001200 PyObject **dictptr = _PyObject_GetDictPtr(obj);
Benjamin Peterson8eb12692012-02-19 19:59:10 -05001201 if (dictptr == NULL) {
1202 PyErr_SetString(PyExc_AttributeError,
1203 "This object has no __dict__");
1204 return -1;
1205 }
1206 if (value == NULL) {
1207 PyErr_SetString(PyExc_TypeError, "cannot delete __dict__");
1208 return -1;
1209 }
1210 if (!PyDict_Check(value)) {
1211 PyErr_Format(PyExc_TypeError,
1212 "__dict__ must be set to a dictionary, "
1213 "not a '%.200s'", Py_TYPE(value)->tp_name);
1214 return -1;
1215 }
Serhiy Storchaka576f1322016-01-05 21:27:54 +02001216 Py_INCREF(value);
Serhiy Storchakaec397562016-04-06 09:50:03 +03001217 Py_XSETREF(*dictptr, value);
Benjamin Peterson8eb12692012-02-19 19:59:10 -05001218 return 0;
1219}
1220
Antoine Pitrou1a9a9d52010-08-28 18:17:03 +00001221
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001222/* Test a value used as condition, e.g., in a for or if statement.
1223 Return -1 if an error occurred */
1224
1225int
Fred Drake100814d2000-07-09 15:48:49 +00001226PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001227{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001228 Py_ssize_t res;
1229 if (v == Py_True)
1230 return 1;
1231 if (v == Py_False)
1232 return 0;
1233 if (v == Py_None)
1234 return 0;
1235 else if (v->ob_type->tp_as_number != NULL &&
1236 v->ob_type->tp_as_number->nb_bool != NULL)
1237 res = (*v->ob_type->tp_as_number->nb_bool)(v);
1238 else if (v->ob_type->tp_as_mapping != NULL &&
1239 v->ob_type->tp_as_mapping->mp_length != NULL)
1240 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
1241 else if (v->ob_type->tp_as_sequence != NULL &&
1242 v->ob_type->tp_as_sequence->sq_length != NULL)
1243 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1244 else
1245 return 1;
1246 /* if it is negative, it should be either -1 or -2 */
1247 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001248}
1249
Tim Peters803526b2002-07-07 05:13:56 +00001250/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001251 Return -1 if an error occurred */
1252
1253int
Fred Drake100814d2000-07-09 15:48:49 +00001254PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001255{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001256 int res;
1257 res = PyObject_IsTrue(v);
1258 if (res < 0)
1259 return res;
1260 return res == 0;
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001261}
1262
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001263/* Test whether an object can be called */
1264
1265int
Fred Drake100814d2000-07-09 15:48:49 +00001266PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001267{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001268 if (x == NULL)
1269 return 0;
1270 return x->ob_type->tp_call != NULL;
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001271}
1272
Tim Peters7eea37e2001-09-04 22:08:56 +00001273
Georg Brandle32b4222007-03-10 22:13:27 +00001274/* Helper for PyObject_Dir without arguments: returns the local scope. */
1275static PyObject *
Guido van Rossumad7d8d12007-04-13 01:39:34 +00001276_dir_locals(void)
Tim Peters305b5852001-09-17 02:38:46 +00001277{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001278 PyObject *names;
Victor Stinner41bb43a2013-10-29 01:19:37 +01001279 PyObject *locals;
Tim Peters305b5852001-09-17 02:38:46 +00001280
Victor Stinner41bb43a2013-10-29 01:19:37 +01001281 locals = PyEval_GetLocals();
1282 if (locals == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001283 return NULL;
Tim Peters305b5852001-09-17 02:38:46 +00001284
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001285 names = PyMapping_Keys(locals);
1286 if (!names)
1287 return NULL;
1288 if (!PyList_Check(names)) {
1289 PyErr_Format(PyExc_TypeError,
1290 "dir(): expected keys() of locals to be a list, "
1291 "not '%.200s'", Py_TYPE(names)->tp_name);
1292 Py_DECREF(names);
1293 return NULL;
1294 }
Benjamin Peterson3bbb7222011-06-11 16:12:08 -05001295 if (PyList_Sort(names)) {
1296 Py_DECREF(names);
1297 return NULL;
1298 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001299 /* the locals don't need to be DECREF'd */
1300 return names;
Georg Brandle32b4222007-03-10 22:13:27 +00001301}
1302
Benjamin Peterson82b00c12011-05-24 11:09:06 -05001303/* Helper for PyObject_Dir: object introspection. */
Georg Brandle32b4222007-03-10 22:13:27 +00001304static PyObject *
1305_dir_object(PyObject *obj)
1306{
Benjamin Peterson3bbb7222011-06-11 16:12:08 -05001307 PyObject *result, *sorted;
Benjamin Petersonce798522012-01-22 11:24:29 -05001308 PyObject *dirfunc = _PyObject_LookupSpecial(obj, &PyId___dir__);
Georg Brandle32b4222007-03-10 22:13:27 +00001309
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001310 assert(obj);
1311 if (dirfunc == NULL) {
Benjamin Peterson82b00c12011-05-24 11:09:06 -05001312 if (!PyErr_Occurred())
1313 PyErr_SetString(PyExc_TypeError, "object does not provide __dir__");
1314 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001315 }
Benjamin Peterson82b00c12011-05-24 11:09:06 -05001316 /* use __dir__ */
1317 result = PyObject_CallFunctionObjArgs(dirfunc, NULL);
1318 Py_DECREF(dirfunc);
1319 if (result == NULL)
1320 return NULL;
Benjamin Peterson3bbb7222011-06-11 16:12:08 -05001321 /* return sorted(result) */
1322 sorted = PySequence_List(result);
1323 Py_DECREF(result);
1324 if (sorted == NULL)
1325 return NULL;
1326 if (PyList_Sort(sorted)) {
1327 Py_DECREF(sorted);
1328 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001329 }
Benjamin Peterson3bbb7222011-06-11 16:12:08 -05001330 return sorted;
Georg Brandle32b4222007-03-10 22:13:27 +00001331}
1332
1333/* Implementation of dir() -- if obj is NULL, returns the names in the current
1334 (local) scope. Otherwise, performs introspection of the object: returns a
1335 sorted list of attribute names (supposedly) accessible from the object
1336*/
1337PyObject *
1338PyObject_Dir(PyObject *obj)
1339{
Benjamin Peterson3bbb7222011-06-11 16:12:08 -05001340 return (obj == NULL) ? _dir_locals() : _dir_object(obj);
Tim Peters7eea37e2001-09-04 22:08:56 +00001341}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001342
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001343/*
Raymond Hettinger66d2be82011-07-28 09:55:13 -07001344None is a non-NULL undefined value.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001345There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001346so there is exactly one (which is indestructible, by the way).
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001347*/
1348
Guido van Rossum0c182a11992-03-27 17:26:13 +00001349/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001350static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001351none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001352{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001353 return PyUnicode_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001354}
1355
Barry Warsaw9bf16442001-01-23 16:24:35 +00001356/* ARGUSED */
1357static void
Tim Peters803526b2002-07-07 05:13:56 +00001358none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001359{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001360 /* This should never get called, but we also don't want to SEGV if
1361 * we accidentally decref None out of existence.
1362 */
1363 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001364}
1365
Benjamin Petersonc4607ae2011-07-29 18:19:43 -05001366static PyObject *
1367none_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
1368{
1369 if (PyTuple_GET_SIZE(args) || (kwargs && PyDict_Size(kwargs))) {
1370 PyErr_SetString(PyExc_TypeError, "NoneType takes no arguments");
1371 return NULL;
1372 }
1373 Py_RETURN_NONE;
1374}
1375
Raymond Hettinger66d2be82011-07-28 09:55:13 -07001376static int
1377none_bool(PyObject *v)
1378{
1379 return 0;
1380}
1381
1382static PyNumberMethods none_as_number = {
1383 0, /* nb_add */
1384 0, /* nb_subtract */
1385 0, /* nb_multiply */
1386 0, /* nb_remainder */
1387 0, /* nb_divmod */
1388 0, /* nb_power */
1389 0, /* nb_negative */
1390 0, /* nb_positive */
1391 0, /* nb_absolute */
1392 (inquiry)none_bool, /* nb_bool */
1393 0, /* nb_invert */
1394 0, /* nb_lshift */
1395 0, /* nb_rshift */
1396 0, /* nb_and */
1397 0, /* nb_xor */
1398 0, /* nb_or */
1399 0, /* nb_int */
1400 0, /* nb_reserved */
1401 0, /* nb_float */
1402 0, /* nb_inplace_add */
1403 0, /* nb_inplace_subtract */
1404 0, /* nb_inplace_multiply */
1405 0, /* nb_inplace_remainder */
1406 0, /* nb_inplace_power */
1407 0, /* nb_inplace_lshift */
1408 0, /* nb_inplace_rshift */
1409 0, /* nb_inplace_and */
1410 0, /* nb_inplace_xor */
1411 0, /* nb_inplace_or */
1412 0, /* nb_floor_divide */
1413 0, /* nb_true_divide */
1414 0, /* nb_inplace_floor_divide */
1415 0, /* nb_inplace_true_divide */
1416 0, /* nb_index */
1417};
Barry Warsaw9bf16442001-01-23 16:24:35 +00001418
Alexandre Vassalotti65846c62013-11-30 17:55:48 -08001419PyTypeObject _PyNone_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001420 PyVarObject_HEAD_INIT(&PyType_Type, 0)
1421 "NoneType",
1422 0,
1423 0,
1424 none_dealloc, /*tp_dealloc*/ /*never called*/
1425 0, /*tp_print*/
1426 0, /*tp_getattr*/
1427 0, /*tp_setattr*/
1428 0, /*tp_reserved*/
1429 none_repr, /*tp_repr*/
Raymond Hettinger66d2be82011-07-28 09:55:13 -07001430 &none_as_number, /*tp_as_number*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001431 0, /*tp_as_sequence*/
1432 0, /*tp_as_mapping*/
1433 0, /*tp_hash */
Benjamin Petersonc4607ae2011-07-29 18:19:43 -05001434 0, /*tp_call */
1435 0, /*tp_str */
1436 0, /*tp_getattro */
1437 0, /*tp_setattro */
1438 0, /*tp_as_buffer */
1439 Py_TPFLAGS_DEFAULT, /*tp_flags */
1440 0, /*tp_doc */
1441 0, /*tp_traverse */
1442 0, /*tp_clear */
1443 0, /*tp_richcompare */
1444 0, /*tp_weaklistoffset */
1445 0, /*tp_iter */
1446 0, /*tp_iternext */
1447 0, /*tp_methods */
1448 0, /*tp_members */
1449 0, /*tp_getset */
1450 0, /*tp_base */
1451 0, /*tp_dict */
1452 0, /*tp_descr_get */
1453 0, /*tp_descr_set */
1454 0, /*tp_dictoffset */
1455 0, /*tp_init */
1456 0, /*tp_alloc */
1457 none_new, /*tp_new */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001458};
1459
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001460PyObject _Py_NoneStruct = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +00001461 _PyObject_EXTRA_INIT
Alexandre Vassalotti65846c62013-11-30 17:55:48 -08001462 1, &_PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001463};
1464
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001465/* NotImplemented is an object that can be used to signal that an
1466 operation is not implemented for the given type combination. */
1467
1468static PyObject *
1469NotImplemented_repr(PyObject *op)
1470{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001471 return PyUnicode_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001472}
1473
Benjamin Peterson18d7d7a2011-07-29 18:27:44 -05001474static PyObject *
Alexandre Vassalottic49477b2013-11-24 02:53:45 -08001475NotImplemented_reduce(PyObject *op)
1476{
1477 return PyUnicode_FromString("NotImplemented");
1478}
1479
1480static PyMethodDef notimplemented_methods[] = {
1481 {"__reduce__", (PyCFunction)NotImplemented_reduce, METH_NOARGS, NULL},
1482 {NULL, NULL}
1483};
1484
1485static PyObject *
Benjamin Peterson18d7d7a2011-07-29 18:27:44 -05001486notimplemented_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
1487{
1488 if (PyTuple_GET_SIZE(args) || (kwargs && PyDict_Size(kwargs))) {
1489 PyErr_SetString(PyExc_TypeError, "NotImplementedType takes no arguments");
1490 return NULL;
1491 }
Brian Curtindfc80e32011-08-10 20:28:54 -05001492 Py_RETURN_NOTIMPLEMENTED;
Benjamin Peterson18d7d7a2011-07-29 18:27:44 -05001493}
1494
Armin Ronacher226b1db2012-10-06 14:28:58 +02001495static void
1496notimplemented_dealloc(PyObject* ignore)
1497{
1498 /* This should never get called, but we also don't want to SEGV if
1499 * we accidentally decref NotImplemented out of existence.
1500 */
1501 Py_FatalError("deallocating NotImplemented");
1502}
1503
Alexandre Vassalotti65846c62013-11-30 17:55:48 -08001504PyTypeObject _PyNotImplemented_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001505 PyVarObject_HEAD_INIT(&PyType_Type, 0)
1506 "NotImplementedType",
1507 0,
1508 0,
Armin Ronacher226b1db2012-10-06 14:28:58 +02001509 notimplemented_dealloc, /*tp_dealloc*/ /*never called*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001510 0, /*tp_print*/
1511 0, /*tp_getattr*/
1512 0, /*tp_setattr*/
1513 0, /*tp_reserved*/
1514 NotImplemented_repr, /*tp_repr*/
1515 0, /*tp_as_number*/
1516 0, /*tp_as_sequence*/
1517 0, /*tp_as_mapping*/
1518 0, /*tp_hash */
Benjamin Peterson18d7d7a2011-07-29 18:27:44 -05001519 0, /*tp_call */
1520 0, /*tp_str */
1521 0, /*tp_getattro */
1522 0, /*tp_setattro */
1523 0, /*tp_as_buffer */
1524 Py_TPFLAGS_DEFAULT, /*tp_flags */
1525 0, /*tp_doc */
1526 0, /*tp_traverse */
1527 0, /*tp_clear */
1528 0, /*tp_richcompare */
1529 0, /*tp_weaklistoffset */
1530 0, /*tp_iter */
1531 0, /*tp_iternext */
Alexandre Vassalottic49477b2013-11-24 02:53:45 -08001532 notimplemented_methods, /*tp_methods */
Benjamin Peterson18d7d7a2011-07-29 18:27:44 -05001533 0, /*tp_members */
1534 0, /*tp_getset */
1535 0, /*tp_base */
1536 0, /*tp_dict */
1537 0, /*tp_descr_get */
1538 0, /*tp_descr_set */
1539 0, /*tp_dictoffset */
1540 0, /*tp_init */
1541 0, /*tp_alloc */
1542 notimplemented_new, /*tp_new */
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001543};
1544
1545PyObject _Py_NotImplementedStruct = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001546 _PyObject_EXTRA_INIT
Alexandre Vassalotti65846c62013-11-30 17:55:48 -08001547 1, &_PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001548};
1549
Guido van Rossumba21a492001-08-16 08:17:26 +00001550void
1551_Py_ReadyTypes(void)
1552{
Victor Stinner5a1bb4e2014-06-02 14:10:59 +02001553 if (PyType_Ready(&PyBaseObject_Type) < 0)
1554 Py_FatalError("Can't initialize object type");
1555
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001556 if (PyType_Ready(&PyType_Type) < 0)
1557 Py_FatalError("Can't initialize type type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001558
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001559 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1560 Py_FatalError("Can't initialize weakref type");
Fred Drake0a4dd392004-07-02 18:57:45 +00001561
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001562 if (PyType_Ready(&_PyWeakref_CallableProxyType) < 0)
1563 Py_FatalError("Can't initialize callable weakref proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001564
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001565 if (PyType_Ready(&_PyWeakref_ProxyType) < 0)
1566 Py_FatalError("Can't initialize weakref proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001567
Victor Stinner5a1bb4e2014-06-02 14:10:59 +02001568 if (PyType_Ready(&PyLong_Type) < 0)
1569 Py_FatalError("Can't initialize int type");
1570
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001571 if (PyType_Ready(&PyBool_Type) < 0)
1572 Py_FatalError("Can't initialize bool type");
Guido van Rossum77f6a652002-04-03 22:41:51 +00001573
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001574 if (PyType_Ready(&PyByteArray_Type) < 0)
1575 Py_FatalError("Can't initialize bytearray type");
Guido van Rossum4dfe8a12006-04-22 23:28:04 +00001576
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001577 if (PyType_Ready(&PyBytes_Type) < 0)
1578 Py_FatalError("Can't initialize 'str'");
Guido van Rossumcacfc072002-05-24 19:01:59 +00001579
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001580 if (PyType_Ready(&PyList_Type) < 0)
1581 Py_FatalError("Can't initialize list type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001582
Alexandre Vassalotti65846c62013-11-30 17:55:48 -08001583 if (PyType_Ready(&_PyNone_Type) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001584 Py_FatalError("Can't initialize None type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001585
Alexandre Vassalotti65846c62013-11-30 17:55:48 -08001586 if (PyType_Ready(&_PyNotImplemented_Type) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001587 Py_FatalError("Can't initialize NotImplemented type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001588
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001589 if (PyType_Ready(&PyTraceBack_Type) < 0)
1590 Py_FatalError("Can't initialize traceback type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001591
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001592 if (PyType_Ready(&PySuper_Type) < 0)
1593 Py_FatalError("Can't initialize super type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001594
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001595 if (PyType_Ready(&PyRange_Type) < 0)
1596 Py_FatalError("Can't initialize range type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001597
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001598 if (PyType_Ready(&PyDict_Type) < 0)
1599 Py_FatalError("Can't initialize dict type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001600
Benjamin Petersondb87c992016-11-06 13:01:07 -08001601 if (PyType_Ready(&PyDictKeys_Type) < 0)
1602 Py_FatalError("Can't initialize dict keys type");
1603
1604 if (PyType_Ready(&PyDictValues_Type) < 0)
1605 Py_FatalError("Can't initialize dict values type");
1606
1607 if (PyType_Ready(&PyDictItems_Type) < 0)
1608 Py_FatalError("Can't initialize dict items type");
1609
Eric Snow96c6af92015-05-29 22:21:39 -06001610 if (PyType_Ready(&PyODict_Type) < 0)
1611 Py_FatalError("Can't initialize OrderedDict type");
1612
1613 if (PyType_Ready(&PyODictKeys_Type) < 0)
1614 Py_FatalError("Can't initialize odict_keys type");
1615
1616 if (PyType_Ready(&PyODictItems_Type) < 0)
1617 Py_FatalError("Can't initialize odict_items type");
1618
1619 if (PyType_Ready(&PyODictValues_Type) < 0)
1620 Py_FatalError("Can't initialize odict_values type");
1621
1622 if (PyType_Ready(&PyODictIter_Type) < 0)
1623 Py_FatalError("Can't initialize odict_keyiterator type");
1624
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001625 if (PyType_Ready(&PySet_Type) < 0)
1626 Py_FatalError("Can't initialize set type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001627
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001628 if (PyType_Ready(&PyUnicode_Type) < 0)
1629 Py_FatalError("Can't initialize str type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001630
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001631 if (PyType_Ready(&PySlice_Type) < 0)
1632 Py_FatalError("Can't initialize slice type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001633
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001634 if (PyType_Ready(&PyStaticMethod_Type) < 0)
1635 Py_FatalError("Can't initialize static method type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001636
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001637 if (PyType_Ready(&PyComplex_Type) < 0)
1638 Py_FatalError("Can't initialize complex type");
Skip Montanaroba1e0f42009-10-18 14:25:35 +00001639
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001640 if (PyType_Ready(&PyFloat_Type) < 0)
1641 Py_FatalError("Can't initialize float type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001642
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001643 if (PyType_Ready(&PyFrozenSet_Type) < 0)
1644 Py_FatalError("Can't initialize frozenset type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001645
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001646 if (PyType_Ready(&PyProperty_Type) < 0)
1647 Py_FatalError("Can't initialize property type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001648
Stefan Krah9a2d99e2012-02-25 12:24:21 +01001649 if (PyType_Ready(&_PyManagedBuffer_Type) < 0)
1650 Py_FatalError("Can't initialize managed buffer type");
1651
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001652 if (PyType_Ready(&PyMemoryView_Type) < 0)
1653 Py_FatalError("Can't initialize memoryview type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001654
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001655 if (PyType_Ready(&PyTuple_Type) < 0)
1656 Py_FatalError("Can't initialize tuple type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001657
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001658 if (PyType_Ready(&PyEnum_Type) < 0)
1659 Py_FatalError("Can't initialize enumerate type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001660
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001661 if (PyType_Ready(&PyReversed_Type) < 0)
1662 Py_FatalError("Can't initialize reversed type");
Guido van Rossum47b9ff62006-08-24 00:41:19 +00001663
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001664 if (PyType_Ready(&PyStdPrinter_Type) < 0)
1665 Py_FatalError("Can't initialize StdPrinter");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001666
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001667 if (PyType_Ready(&PyCode_Type) < 0)
1668 Py_FatalError("Can't initialize code type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001669
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001670 if (PyType_Ready(&PyFrame_Type) < 0)
1671 Py_FatalError("Can't initialize frame type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001672
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001673 if (PyType_Ready(&PyCFunction_Type) < 0)
1674 Py_FatalError("Can't initialize builtin function type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001675
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001676 if (PyType_Ready(&PyMethod_Type) < 0)
1677 Py_FatalError("Can't initialize method type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001678
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001679 if (PyType_Ready(&PyFunction_Type) < 0)
1680 Py_FatalError("Can't initialize function type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001681
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001682 if (PyType_Ready(&PyDictProxy_Type) < 0)
1683 Py_FatalError("Can't initialize dict proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001684
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001685 if (PyType_Ready(&PyGen_Type) < 0)
1686 Py_FatalError("Can't initialize generator type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001687
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001688 if (PyType_Ready(&PyGetSetDescr_Type) < 0)
1689 Py_FatalError("Can't initialize get-set descriptor type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001690
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001691 if (PyType_Ready(&PyWrapperDescr_Type) < 0)
1692 Py_FatalError("Can't initialize wrapper type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001693
Benjamin Petersoneff61f62011-09-01 16:32:31 -04001694 if (PyType_Ready(&_PyMethodWrapper_Type) < 0)
1695 Py_FatalError("Can't initialize method wrapper type");
1696
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001697 if (PyType_Ready(&PyEllipsis_Type) < 0)
1698 Py_FatalError("Can't initialize ellipsis type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001699
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001700 if (PyType_Ready(&PyMemberDescr_Type) < 0)
1701 Py_FatalError("Can't initialize member descriptor type");
Benjamin Peterson8bc5b682009-05-09 18:10:51 +00001702
Barry Warsaw409da152012-06-03 16:18:47 -04001703 if (PyType_Ready(&_PyNamespace_Type) < 0)
1704 Py_FatalError("Can't initialize namespace type");
Benjamin Petersone8ea97f2012-10-30 23:27:52 -04001705
Benjamin Petersonc4311282012-10-30 23:21:10 -04001706 if (PyType_Ready(&PyCapsule_Type) < 0)
1707 Py_FatalError("Can't initialize capsule type");
1708
1709 if (PyType_Ready(&PyLongRangeIter_Type) < 0)
1710 Py_FatalError("Can't initialize long range iterator type");
1711
1712 if (PyType_Ready(&PyCell_Type) < 0)
1713 Py_FatalError("Can't initialize cell type");
1714
1715 if (PyType_Ready(&PyInstanceMethod_Type) < 0)
1716 Py_FatalError("Can't initialize instance method type");
1717
1718 if (PyType_Ready(&PyClassMethodDescr_Type) < 0)
1719 Py_FatalError("Can't initialize class method descr type");
1720
1721 if (PyType_Ready(&PyMethodDescr_Type) < 0)
1722 Py_FatalError("Can't initialize method descr type");
1723
1724 if (PyType_Ready(&PyCallIter_Type) < 0)
1725 Py_FatalError("Can't initialize call iter type");
1726
1727 if (PyType_Ready(&PySeqIter_Type) < 0)
1728 Py_FatalError("Can't initialize sequence iterator type");
Yury Selivanov5376ba92015-06-22 12:19:30 -04001729
1730 if (PyType_Ready(&PyCoro_Type) < 0)
1731 Py_FatalError("Can't initialize coroutine type");
1732
1733 if (PyType_Ready(&_PyCoroWrapper_Type) < 0)
1734 Py_FatalError("Can't initialize coroutine wrapper type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001735}
1736
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001737
Guido van Rossum84a90321996-05-22 16:34:47 +00001738#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001739
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001740void
Fred Drake100814d2000-07-09 15:48:49 +00001741_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001742{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001743 _Py_INC_REFTOTAL;
1744 op->ob_refcnt = 1;
1745 _Py_AddToAllObjects(op, 1);
1746 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001747}
1748
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001749void
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02001750_Py_ForgetReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001751{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001752#ifdef SLOW_UNREF_CHECK
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02001753 PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001754#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001755 if (op->ob_refcnt < 0)
1756 Py_FatalError("UNREF negative refcnt");
1757 if (op == &refchain ||
1758 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op) {
1759 fprintf(stderr, "* ob\n");
1760 _PyObject_Dump(op);
1761 fprintf(stderr, "* op->_ob_prev->_ob_next\n");
1762 _PyObject_Dump(op->_ob_prev->_ob_next);
1763 fprintf(stderr, "* op->_ob_next->_ob_prev\n");
1764 _PyObject_Dump(op->_ob_next->_ob_prev);
1765 Py_FatalError("UNREF invalid object");
1766 }
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001767#ifdef SLOW_UNREF_CHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001768 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1769 if (p == op)
1770 break;
1771 }
1772 if (p == &refchain) /* Not found */
1773 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001774#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001775 op->_ob_next->_ob_prev = op->_ob_prev;
1776 op->_ob_prev->_ob_next = op->_ob_next;
1777 op->_ob_next = op->_ob_prev = NULL;
1778 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001779}
1780
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001781void
Fred Drake100814d2000-07-09 15:48:49 +00001782_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001783{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001784 destructor dealloc = Py_TYPE(op)->tp_dealloc;
1785 _Py_ForgetReference(op);
1786 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001787}
1788
Tim Peters269b2a62003-04-17 19:52:29 +00001789/* Print all live objects. Because PyObject_Print is called, the
1790 * interpreter must be in a healthy state.
1791 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001792void
Fred Drake100814d2000-07-09 15:48:49 +00001793_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001794{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001795 PyObject *op;
1796 fprintf(fp, "Remaining objects:\n");
1797 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
1798 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
1799 if (PyObject_Print(op, fp, 0) != 0)
1800 PyErr_Clear();
1801 putc('\n', fp);
1802 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001803}
1804
Tim Peters269b2a62003-04-17 19:52:29 +00001805/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
1806 * doesn't make any calls to the Python C API, so is always safe to call.
1807 */
1808void
1809_Py_PrintReferenceAddresses(FILE *fp)
1810{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001811 PyObject *op;
1812 fprintf(fp, "Remaining object addresses:\n");
1813 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
1814 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
1815 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00001816}
1817
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001818PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001819_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001820{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001821 int i, n;
1822 PyObject *t = NULL;
1823 PyObject *res, *op;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001824
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001825 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
1826 return NULL;
1827 op = refchain._ob_next;
1828 res = PyList_New(0);
1829 if (res == NULL)
1830 return NULL;
1831 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
1832 while (op == self || op == args || op == res || op == t ||
1833 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
1834 op = op->_ob_next;
1835 if (op == &refchain)
1836 return res;
1837 }
1838 if (PyList_Append(res, op) < 0) {
1839 Py_DECREF(res);
1840 return NULL;
1841 }
1842 op = op->_ob_next;
1843 }
1844 return res;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001845}
1846
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001847#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00001848
Benjamin Petersonb173f782009-05-05 22:31:58 +00001849
Guido van Rossum84a90321996-05-22 16:34:47 +00001850/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001851Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00001852
1853
David Malcolm49526f42012-06-22 14:55:41 -04001854void
1855_PyObject_DebugTypeStats(FILE *out)
1856{
1857 _PyCFunction_DebugMallocStats(out);
1858 _PyDict_DebugMallocStats(out);
1859 _PyFloat_DebugMallocStats(out);
1860 _PyFrame_DebugMallocStats(out);
1861 _PyList_DebugMallocStats(out);
1862 _PyMethod_DebugMallocStats(out);
David Malcolm49526f42012-06-22 14:55:41 -04001863 _PyTuple_DebugMallocStats(out);
1864}
Guido van Rossumb18618d2000-05-03 23:44:39 +00001865
Guido van Rossum86610361998-04-10 22:32:46 +00001866/* These methods are used to control infinite recursion in repr, str, print,
1867 etc. Container objects that may recursively contain themselves,
Martin Panter8d56c022016-05-29 04:13:35 +00001868 e.g. builtin dictionaries and lists, should use Py_ReprEnter() and
Guido van Rossum86610361998-04-10 22:32:46 +00001869 Py_ReprLeave() to avoid infinite recursion.
1870
1871 Py_ReprEnter() returns 0 the first time it is called for a particular
1872 object and 1 every time thereafter. It returns -1 if an exception
1873 occurred. Py_ReprLeave() has no return value.
1874
1875 See dictobject.c and listobject.c for examples of use.
1876*/
1877
Guido van Rossum86610361998-04-10 22:32:46 +00001878int
Fred Drake100814d2000-07-09 15:48:49 +00001879Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00001880{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001881 PyObject *dict;
1882 PyObject *list;
1883 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00001884
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001885 dict = PyThreadState_GetDict();
Antoine Pitrou04d17d32014-03-31 22:04:38 +02001886 /* Ignore a missing thread-state, so that this function can be called
1887 early on startup. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001888 if (dict == NULL)
1889 return 0;
Victor Stinner7a07e452013-11-06 18:57:29 +01001890 list = _PyDict_GetItemId(dict, &PyId_Py_Repr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001891 if (list == NULL) {
1892 list = PyList_New(0);
1893 if (list == NULL)
1894 return -1;
Victor Stinner7a07e452013-11-06 18:57:29 +01001895 if (_PyDict_SetItemId(dict, &PyId_Py_Repr, list) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001896 return -1;
1897 Py_DECREF(list);
1898 }
1899 i = PyList_GET_SIZE(list);
1900 while (--i >= 0) {
1901 if (PyList_GET_ITEM(list, i) == obj)
1902 return 1;
1903 }
Victor Stinnere901d1f2013-07-17 21:58:41 +02001904 if (PyList_Append(list, obj) < 0)
1905 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001906 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00001907}
1908
1909void
Fred Drake100814d2000-07-09 15:48:49 +00001910Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00001911{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001912 PyObject *dict;
1913 PyObject *list;
1914 Py_ssize_t i;
Victor Stinner1b634932013-07-16 22:24:44 +02001915 PyObject *error_type, *error_value, *error_traceback;
1916
1917 PyErr_Fetch(&error_type, &error_value, &error_traceback);
Guido van Rossum86610361998-04-10 22:32:46 +00001918
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001919 dict = PyThreadState_GetDict();
1920 if (dict == NULL)
Victor Stinner1b634932013-07-16 22:24:44 +02001921 goto finally;
1922
Victor Stinner7a07e452013-11-06 18:57:29 +01001923 list = _PyDict_GetItemId(dict, &PyId_Py_Repr);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001924 if (list == NULL || !PyList_Check(list))
Victor Stinner1b634932013-07-16 22:24:44 +02001925 goto finally;
1926
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001927 i = PyList_GET_SIZE(list);
1928 /* Count backwards because we always expect obj to be list[-1] */
1929 while (--i >= 0) {
1930 if (PyList_GET_ITEM(list, i) == obj) {
1931 PyList_SetSlice(list, i, i + 1, NULL);
1932 break;
1933 }
1934 }
Victor Stinner1b634932013-07-16 22:24:44 +02001935
1936finally:
1937 /* ignore exceptions because there is no way to report them. */
1938 PyErr_Restore(error_type, error_value, error_traceback);
Guido van Rossum86610361998-04-10 22:32:46 +00001939}
Guido van Rossumd724b232000-03-13 16:01:29 +00001940
Tim Peters803526b2002-07-07 05:13:56 +00001941/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00001942
Tim Peters803526b2002-07-07 05:13:56 +00001943/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00001944int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00001945
Tim Peters803526b2002-07-07 05:13:56 +00001946/* List of objects that still need to be cleaned up, singly linked via their
1947 * gc headers' gc_prev pointers.
1948 */
1949PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00001950
Tim Peters803526b2002-07-07 05:13:56 +00001951/* Add op to the _PyTrash_delete_later list. Called when the current
1952 * call-stack depth gets large. op must be a currently untracked gc'ed
1953 * object, with refcount 0. Py_DECREF must already have been called on it.
1954 */
Guido van Rossumd724b232000-03-13 16:01:29 +00001955void
Fred Drake100814d2000-07-09 15:48:49 +00001956_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00001957{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001958 assert(PyObject_IS_GC(op));
Antoine Pitrou796564c2013-07-30 19:59:21 +02001959 assert(_PyGC_REFS(op) == _PyGC_REFS_UNTRACKED);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001960 assert(op->ob_refcnt == 0);
1961 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
1962 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00001963}
1964
Antoine Pitrou2b0218a2012-09-06 00:59:49 +02001965/* The equivalent API, using per-thread state recursion info */
1966void
1967_PyTrash_thread_deposit_object(PyObject *op)
1968{
1969 PyThreadState *tstate = PyThreadState_GET();
1970 assert(PyObject_IS_GC(op));
Antoine Pitrou796564c2013-07-30 19:59:21 +02001971 assert(_PyGC_REFS(op) == _PyGC_REFS_UNTRACKED);
Antoine Pitrou2b0218a2012-09-06 00:59:49 +02001972 assert(op->ob_refcnt == 0);
1973 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *) tstate->trash_delete_later;
1974 tstate->trash_delete_later = op;
1975}
1976
Tim Peters803526b2002-07-07 05:13:56 +00001977/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
1978 * the call-stack unwinds again.
1979 */
Guido van Rossumd724b232000-03-13 16:01:29 +00001980void
Fred Drake100814d2000-07-09 15:48:49 +00001981_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00001982{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001983 while (_PyTrash_delete_later) {
1984 PyObject *op = _PyTrash_delete_later;
1985 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00001986
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001987 _PyTrash_delete_later =
1988 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00001989
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001990 /* Call the deallocator directly. This used to try to
1991 * fool Py_DECREF into calling it indirectly, but
1992 * Py_DECREF was already called on this object, and in
1993 * assorted non-release builds calling Py_DECREF again ends
1994 * up distorting allocation statistics.
1995 */
1996 assert(op->ob_refcnt == 0);
1997 ++_PyTrash_delete_nesting;
1998 (*dealloc)(op);
1999 --_PyTrash_delete_nesting;
2000 }
Guido van Rossumd724b232000-03-13 16:01:29 +00002001}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002002
Antoine Pitrou2b0218a2012-09-06 00:59:49 +02002003/* The equivalent API, using per-thread state recursion info */
2004void
2005_PyTrash_thread_destroy_chain(void)
2006{
2007 PyThreadState *tstate = PyThreadState_GET();
2008 while (tstate->trash_delete_later) {
2009 PyObject *op = tstate->trash_delete_later;
2010 destructor dealloc = Py_TYPE(op)->tp_dealloc;
2011
2012 tstate->trash_delete_later =
2013 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
2014
2015 /* Call the deallocator directly. This used to try to
2016 * fool Py_DECREF into calling it indirectly, but
2017 * Py_DECREF was already called on this object, and in
2018 * assorted non-release builds calling Py_DECREF again ends
2019 * up distorting allocation statistics.
2020 */
2021 assert(op->ob_refcnt == 0);
2022 ++tstate->trash_delete_nesting;
2023 (*dealloc)(op);
2024 --tstate->trash_delete_nesting;
2025 }
2026}
2027
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00002028#ifndef Py_TRACE_REFS
2029/* For Py_LIMITED_API, we need an out-of-line version of _Py_Dealloc.
2030 Define this here, so we can undefine the macro. */
2031#undef _Py_Dealloc
2032PyAPI_FUNC(void) _Py_Dealloc(PyObject *);
2033void
2034_Py_Dealloc(PyObject *op)
2035{
2036 _Py_INC_TPFREES(op) _Py_COUNT_ALLOCS_COMMA
2037 (*Py_TYPE(op)->tp_dealloc)(op);
2038}
2039#endif
2040
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002041#ifdef __cplusplus
2042}
2043#endif