| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-11 16:33:35 -05:00
										 |  |  | /* Generic object operations; and implementation of None */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  | #include "pycore_context.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-27 16:39:22 +02:00
										 |  |  | #include "pycore_initconfig.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-12 21:51:34 +02:00
										 |  |  | #include "pycore_object.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  | #include "pycore_pyerrors.h"
 | 
					
						
							| 
									
										
										
										
											2018-11-12 16:53:38 +01:00
										 |  |  | #include "pycore_pystate.h"
 | 
					
						
							| 
									
										
										
										
											2009-04-20 02:09:13 +00:00
										 |  |  | #include "frameobject.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-15 16:35:46 -06:00
										 |  |  | #include "interpreteridobject.h"
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  | /* Defined in tracemalloc.c */ | 
					
						
							|  |  |  | extern void _PyMem_DumpTraceback(int fd, const void *ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-07 23:07:29 +01:00
										 |  |  | _Py_IDENTIFIER(Py_Repr); | 
					
						
							|  |  |  | _Py_IDENTIFIER(__bytes__); | 
					
						
							|  |  |  | _Py_IDENTIFIER(__dir__); | 
					
						
							|  |  |  | _Py_IDENTIFIER(__isabstractmethod__); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-12 21:51:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyObject_CheckConsistency(PyObject *op, int check_content) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  | #define CHECK(expr) \
 | 
					
						
							|  |  |  |     do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0) | 
					
						
							| 
									
										
										
										
											2019-04-12 21:51:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |     CHECK(!_PyObject_IsFreed(op)); | 
					
						
							|  |  |  |     CHECK(Py_REFCNT(op) >= 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CHECK(op->ob_type != NULL); | 
					
						
							|  |  |  |     _PyType_CheckConsistency(op->ob_type); | 
					
						
							| 
									
										
										
										
											2019-04-12 21:51:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (PyUnicode_Check(op)) { | 
					
						
							|  |  |  |         _PyUnicode_CheckConsistency(op, check_content); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (PyDict_Check(op)) { | 
					
						
							|  |  |  |         _PyDict_CheckConsistency(op, check_content); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef CHECK
 | 
					
						
							| 
									
										
										
										
											2019-04-12 21:51:34 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												object.h special-build macro minefield:  renamed all the new lexical
helper macros to something saner, and used them appropriately in other
files too, to reduce #ifdef blocks.
classobject.c, instance_dealloc():  One of my worst Python Memories is
trying to fix this routine a few years ago when COUNT_ALLOCS was defined
but Py_TRACE_REFS wasn't.  The special-build code here is way too
complicated.  Now it's much simpler.  Difference:  in a Py_TRACE_REFS
build, the instance is no longer in the doubly-linked list of live
objects while its __del__ method is executing, and that may be visible
via sys.getobjects() called from a __del__ method.  Tough -- the object
is presumed dead while its __del__ is executing anyway, and not calling
_Py_NewReference() at the start allows enormous code simplification.
typeobject.c, call_finalizer():  The special-build instance_dealloc()
pain apparently spread to here too via cut-'n-paste, and this is much
simpler now too.  In addition, I didn't understand why this routine
was calling _PyObject_GC_TRACK() after a resurrection, since there's no
plausible way _PyObject_GC_UNTRACK() could have been called on the
object by this point.  I suspect it was left over from pasting the
instance_delloc() code.  Instead asserted that the object is still
tracked.  Caution:  I suspect we don't have a test that actually
exercises the subtype_dealloc() __del__-resurrected-me code.
											
										 
											2002-07-11 06:23:50 +00:00
										 |  |  | #ifdef Py_REF_DEBUG
 | 
					
						
							| 
									
										
										
										
											2006-03-04 20:00:59 +00:00
										 |  |  | Py_ssize_t _Py_RefTotal; | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Py_ssize_t | 
					
						
							|  |  |  | _Py_GetRefTotal(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *o; | 
					
						
							|  |  |  |     Py_ssize_t total = _Py_RefTotal; | 
					
						
							| 
									
										
										
										
											2013-08-24 21:07:07 +02:00
										 |  |  |     o = _PySet_Dummy; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (o != NULL) | 
					
						
							|  |  |  |         total -= o->ob_refcnt; | 
					
						
							|  |  |  |     return total; | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-11-20 21:39:37 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 00:35:58 -07:00
										 |  |  | void | 
					
						
							|  |  |  | _PyDebug_PrintTotalRefs(void) { | 
					
						
							|  |  |  |     fprintf(stderr, | 
					
						
							|  |  |  |             "[%" PY_FORMAT_SIZE_T "d refs, " | 
					
						
							|  |  |  |             "%" PY_FORMAT_SIZE_T "d blocks]\n", | 
					
						
							|  |  |  |             _Py_GetRefTotal(), _Py_GetAllocatedBlocks()); | 
					
						
							| 
									
										
										
										
											2014-11-20 21:39:37 +10:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | #endif /* Py_REF_DEBUG */
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
 | 
					
						
							|  |  |  |    These are used by the individual routines for object creation. | 
					
						
							|  |  |  |    Do not call them otherwise, they do not initialize the object! */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-23 02:51:01 +00:00
										 |  |  | #ifdef Py_TRACE_REFS
 | 
					
						
							| 
									
										
										
										
											2003-03-23 17:52:28 +00:00
										 |  |  | /* Head of circular doubly-linked list of all objects.  These are linked
 | 
					
						
							|  |  |  |  * together via the _ob_prev and _ob_next members of a PyObject, which | 
					
						
							|  |  |  |  * exist only in a Py_TRACE_REFS build. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2003-03-23 02:51:01 +00:00
										 |  |  | static PyObject refchain = {&refchain, &refchain}; | 
					
						
							| 
									
										
										
										
											2003-03-23 03:33:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-23 17:52:28 +00:00
										 |  |  | /* Insert op at the front of the list of all objects.  If force is true,
 | 
					
						
							|  |  |  |  * op is added even if _ob_prev and _ob_next are non-NULL already.  If | 
					
						
							|  |  |  |  * force is false amd _ob_prev or _ob_next are non-NULL, do nothing. | 
					
						
							|  |  |  |  * force should be true if and only if op points to freshly allocated, | 
					
						
							|  |  |  |  * uninitialized memory, or you've unlinked op from the list and are | 
					
						
							| 
									
										
										
										
											2003-03-23 18:06:08 +00:00
										 |  |  |  * relinking it into the front. | 
					
						
							| 
									
										
										
										
											2003-03-23 17:52:28 +00:00
										 |  |  |  * Note that objects are normally added to the list via _Py_NewReference, | 
					
						
							|  |  |  |  * which is called by PyObject_Init.  Not all objects are initialized that | 
					
						
							|  |  |  |  * way, though; exceptions include statically allocated type objects, and | 
					
						
							|  |  |  |  * statically allocated singletons (like Py_True and Py_None). | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2003-03-23 03:33:13 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2003-03-23 17:52:28 +00:00
										 |  |  | _Py_AddToAllObjects(PyObject *op, int force) | 
					
						
							| 
									
										
										
										
											2003-03-23 03:33:13 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2003-03-23 17:52:28 +00:00
										 |  |  | #ifdef  Py_DEBUG
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (!force) { | 
					
						
							|  |  |  |         /* If it's initialized memory, op must be in or out of
 | 
					
						
							|  |  |  |          * the list unambiguously. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |         _PyObject_ASSERT(op, (op->_ob_prev == NULL) == (op->_ob_next == NULL)); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-03-23 02:51:01 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (force || op->_ob_prev == NULL) { | 
					
						
							|  |  |  |         op->_ob_next = refchain._ob_next; | 
					
						
							|  |  |  |         op->_ob_prev = &refchain; | 
					
						
							|  |  |  |         refchain._ob_next->_ob_prev = op; | 
					
						
							|  |  |  |         refchain._ob_next = op; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2003-03-23 17:52:28 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | #endif  /* Py_TRACE_REFS */
 | 
					
						
							| 
									
										
										
										
											2003-03-23 02:51:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | #ifdef COUNT_ALLOCS
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyTypeObject *type_list; | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | /* All types are added to type_list, at least when
 | 
					
						
							|  |  |  |    they get one object created. That makes them | 
					
						
							|  |  |  |    immortal, which unfortunately contributes to | 
					
						
							|  |  |  |    garbage itself. If unlist_types_without_objects | 
					
						
							|  |  |  |    is set, they will be removed from the type_list | 
					
						
							|  |  |  |    once the last object is deallocated. */ | 
					
						
							| 
									
										
										
										
											2009-01-11 17:13:55 +00:00
										 |  |  | static int unlist_types_without_objects; | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  | extern Py_ssize_t _Py_tuple_zero_allocs, _Py_fast_tuple_allocs; | 
					
						
							|  |  |  | extern Py_ssize_t _Py_quick_int_allocs, _Py_quick_neg_int_allocs; | 
					
						
							|  |  |  | extern Py_ssize_t _Py_null_strings, _Py_one_strings; | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  | _Py_dump_counts(FILE* f) | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-03 15:33:52 +02:00
										 |  |  |     PyInterpreterState *interp = _PyInterpreterState_Get(); | 
					
						
							| 
									
										
										
										
											2019-05-27 16:39:22 +02:00
										 |  |  |     if (!interp->config.show_alloc_count) { | 
					
						
							| 
									
										
										
										
											2016-07-03 21:03:53 +03:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2017-11-20 18:12:22 -08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 20:55:18 -08:00
										 |  |  |     PyTypeObject *tp; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     for (tp = type_list; tp; tp = tp->tp_next) | 
					
						
							|  |  |  |         fprintf(f, "%s alloc'd: %" PY_FORMAT_SIZE_T "d, " | 
					
						
							|  |  |  |             "freed: %" PY_FORMAT_SIZE_T "d, " | 
					
						
							|  |  |  |             "max in use: %" PY_FORMAT_SIZE_T "d\n", | 
					
						
							|  |  |  |             tp->tp_name, tp->tp_allocs, tp->tp_frees, | 
					
						
							|  |  |  |             tp->tp_maxalloc); | 
					
						
							|  |  |  |     fprintf(f, "fast tuple allocs: %" PY_FORMAT_SIZE_T "d, " | 
					
						
							|  |  |  |         "empty: %" PY_FORMAT_SIZE_T "d\n", | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  |         _Py_fast_tuple_allocs, _Py_tuple_zero_allocs); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     fprintf(f, "fast int allocs: pos: %" PY_FORMAT_SIZE_T "d, " | 
					
						
							|  |  |  |         "neg: %" PY_FORMAT_SIZE_T "d\n", | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  |         _Py_quick_int_allocs, _Py_quick_neg_int_allocs); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     fprintf(f, "null strings: %" PY_FORMAT_SIZE_T "d, " | 
					
						
							|  |  |  |         "1-strings: %" PY_FORMAT_SIZE_T "d\n", | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  |         _Py_null_strings, _Py_one_strings); | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-29 09:18:14 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  | _Py_get_counts(void) | 
					
						
							| 
									
										
										
										
											1995-08-29 09:18:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyTypeObject *tp; | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							|  |  |  |     PyObject *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     result = PyList_New(0); | 
					
						
							|  |  |  |     if (result == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     for (tp = type_list; tp; tp = tp->tp_next) { | 
					
						
							|  |  |  |         v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs, | 
					
						
							|  |  |  |                           tp->tp_frees, tp->tp_maxalloc); | 
					
						
							|  |  |  |         if (v == NULL) { | 
					
						
							|  |  |  |             Py_DECREF(result); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (PyList_Append(result, v) < 0) { | 
					
						
							|  |  |  |             Py_DECREF(v); | 
					
						
							|  |  |  |             Py_DECREF(result); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         Py_DECREF(v); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return result; | 
					
						
							| 
									
										
										
										
											1995-08-29 09:18:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  | _Py_inc_count(PyTypeObject *tp) | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (tp->tp_next == NULL && tp->tp_prev == NULL) { | 
					
						
							|  |  |  |         /* first time; insert in linked list */ | 
					
						
							|  |  |  |         if (tp->tp_next != NULL) /* sanity check */ | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  |             Py_FatalError("XXX _Py_inc_count sanity check"); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         if (type_list) | 
					
						
							|  |  |  |             type_list->tp_prev = tp; | 
					
						
							|  |  |  |         tp->tp_next = type_list; | 
					
						
							|  |  |  |         /* Note that as of Python 2.2, heap-allocated type objects
 | 
					
						
							|  |  |  |          * can go away, but this code requires that they stay alive | 
					
						
							|  |  |  |          * until program exit.  That's why we're careful with | 
					
						
							|  |  |  |          * refcounts here.  type_list gets a new reference to tp, | 
					
						
							|  |  |  |          * while ownership of the reference type_list used to hold | 
					
						
							|  |  |  |          * (if any) was transferred to tp->tp_next in the line above. | 
					
						
							|  |  |  |          * tp is thus effectively immortal after this. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         Py_INCREF(tp); | 
					
						
							|  |  |  |         type_list = tp; | 
					
						
							| 
									
										
										
										
											2003-03-23 03:04:32 +00:00
										 |  |  | #ifdef Py_TRACE_REFS
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         /* Also insert in the doubly-linked list of all objects,
 | 
					
						
							|  |  |  |          * if not already there. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         _Py_AddToAllObjects((PyObject *)tp, 0); | 
					
						
							| 
									
										
										
										
											2003-03-23 02:51:01 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     tp->tp_allocs++; | 
					
						
							|  |  |  |     if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc) | 
					
						
							|  |  |  |         tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees; | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-28 15:02:17 +00:00
										 |  |  | void _Py_dec_count(PyTypeObject *tp) | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     tp->tp_frees++; | 
					
						
							|  |  |  |     if (unlist_types_without_objects && | 
					
						
							|  |  |  |         tp->tp_allocs == tp->tp_frees) { | 
					
						
							|  |  |  |         /* unlink the type from type_list */ | 
					
						
							|  |  |  |         if (tp->tp_prev) | 
					
						
							|  |  |  |             tp->tp_prev->tp_next = tp->tp_next; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             type_list = tp->tp_next; | 
					
						
							|  |  |  |         if (tp->tp_next) | 
					
						
							|  |  |  |             tp->tp_next->tp_prev = tp->tp_prev; | 
					
						
							|  |  |  |         tp->tp_next = tp->tp_prev = NULL; | 
					
						
							|  |  |  |         Py_DECREF(tp); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-10-11 12:54:31 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-09 02:57:01 +00:00
										 |  |  | #ifdef Py_REF_DEBUG
 | 
					
						
							|  |  |  | /* Log a fatal error; doesn't return. */ | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2018-10-25 17:28:11 +02:00
										 |  |  | _Py_NegativeRefcount(const char *filename, int lineno, PyObject *op) | 
					
						
							| 
									
										
										
										
											2002-07-09 02:57:01 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-21 23:53:44 +01:00
										 |  |  |     _PyObject_AssertFailed(op, NULL, "object has negative ref count", | 
					
						
							| 
									
										
										
										
											2018-10-26 02:12:34 +02:00
										 |  |  |                            filename, lineno, __func__); | 
					
						
							| 
									
										
										
										
											2002-07-09 02:57:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* Py_REF_DEBUG */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-04-22 17:23:49 +00:00
										 |  |  | void | 
					
						
							|  |  |  | Py_IncRef(PyObject *o) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_XINCREF(o); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | Py_DecRef(PyObject *o) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_XDECREF(o); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_Init(PyObject *op, PyTypeObject *tp) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (op == NULL) | 
					
						
							|  |  |  |         return PyErr_NoMemory(); | 
					
						
							|  |  |  |     /* Any changes should be reflected in PyObject_INIT (objimpl.h) */ | 
					
						
							|  |  |  |     Py_TYPE(op) = tp; | 
					
						
							| 
									
										
										
										
											2019-03-27 07:52:18 -04:00
										 |  |  |     if (PyType_GetFlags(tp) & Py_TPFLAGS_HEAPTYPE) { | 
					
						
							|  |  |  |         Py_INCREF(tp); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     _Py_NewReference(op); | 
					
						
							|  |  |  |     return op; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-15 21:31:03 +00:00
										 |  |  | PyVarObject * | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (op == NULL) | 
					
						
							|  |  |  |         return (PyVarObject *) PyErr_NoMemory(); | 
					
						
							|  |  |  |     /* Any changes should be reflected in PyObject_INIT_VAR */ | 
					
						
							| 
									
										
										
										
											2019-03-27 07:52:18 -04:00
										 |  |  |     Py_SIZE(op) = size; | 
					
						
							|  |  |  |     PyObject_Init((PyObject *)op, tp); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return op; | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | _PyObject_New(PyTypeObject *tp) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *op; | 
					
						
							|  |  |  |     op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp)); | 
					
						
							|  |  |  |     if (op == NULL) | 
					
						
							|  |  |  |         return PyErr_NoMemory(); | 
					
						
							|  |  |  |     return PyObject_INIT(op, tp); | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-15 21:31:03 +00:00
										 |  |  | PyVarObject * | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | _PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyVarObject *op; | 
					
						
							|  |  |  |     const size_t size = _PyObject_VAR_SIZE(tp, nitems); | 
					
						
							|  |  |  |     op = (PyVarObject *) PyObject_MALLOC(size); | 
					
						
							|  |  |  |     if (op == NULL) | 
					
						
							|  |  |  |         return (PyVarObject *)PyErr_NoMemory(); | 
					
						
							|  |  |  |     return PyObject_INIT_VAR(op, tp, nitems); | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  | void | 
					
						
							|  |  |  | PyObject_CallFinalizer(PyObject *self) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyTypeObject *tp = Py_TYPE(self); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-29 22:12:38 +02:00
										 |  |  |     if (tp->tp_finalize == NULL) | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |         return; | 
					
						
							|  |  |  |     /* tp_finalize should only be called once. */ | 
					
						
							|  |  |  |     if (PyType_IS_GC(tp) && _PyGC_FINALIZED(self)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tp->tp_finalize(self); | 
					
						
							| 
									
										
										
										
											2018-07-10 17:19:53 +09:00
										 |  |  |     if (PyType_IS_GC(tp)) { | 
					
						
							|  |  |  |         _PyGC_SET_FINALIZED(self); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | PyObject_CallFinalizerFromDealloc(PyObject *self) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_ssize_t refcnt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Temporarily resurrect the object. */ | 
					
						
							|  |  |  |     if (self->ob_refcnt != 0) { | 
					
						
							|  |  |  |         Py_FatalError("PyObject_CallFinalizerFromDealloc called on " | 
					
						
							|  |  |  |                       "object with a non-zero refcount"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     self->ob_refcnt = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyObject_CallFinalizer(self); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Undo the temporary resurrection; can't use DECREF here, it would
 | 
					
						
							|  |  |  |      * cause a recursive call. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |     _PyObject_ASSERT_WITH_MSG(self, | 
					
						
							|  |  |  |                               self->ob_refcnt > 0, | 
					
						
							|  |  |  |                               "refcount is too small"); | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |     if (--self->ob_refcnt == 0) | 
					
						
							|  |  |  |         return 0;         /* this is the normal path out */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* tp_finalize resurrected it!  Make it look like the original Py_DECREF
 | 
					
						
							|  |  |  |      * never happened. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     refcnt = self->ob_refcnt; | 
					
						
							|  |  |  |     _Py_NewReference(self); | 
					
						
							|  |  |  |     self->ob_refcnt = refcnt; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |     _PyObject_ASSERT(self, | 
					
						
							|  |  |  |                      (!PyType_IS_GC(Py_TYPE(self)) | 
					
						
							|  |  |  |                       || _PyObject_GC_IS_TRACKED(self))); | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |     /* If Py_REF_DEBUG, _Py_NewReference bumped _Py_RefTotal, so
 | 
					
						
							|  |  |  |      * we need to undo that. */ | 
					
						
							|  |  |  |     _Py_DEC_REFTOTAL; | 
					
						
							|  |  |  |     /* If Py_TRACE_REFS, _Py_NewReference re-added self to the object
 | 
					
						
							|  |  |  |      * chain, so no more to do there. | 
					
						
							|  |  |  |      * If COUNT_ALLOCS, the original decref bumped tp_frees, and | 
					
						
							|  |  |  |      * _Py_NewReference bumped tp_allocs:  both of those need to be | 
					
						
							|  |  |  |      * undone. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #ifdef COUNT_ALLOCS
 | 
					
						
							|  |  |  |     --Py_TYPE(self)->tp_frees; | 
					
						
							|  |  |  |     --Py_TYPE(self)->tp_allocs; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-27 22:08:27 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PyObject_Print(PyObject *op, FILE *fp, int flags) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     int ret = 0; | 
					
						
							|  |  |  |     if (PyErr_CheckSignals()) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											1998-04-28 16:06:54 +00:00
										 |  |  | #ifdef USE_STACKCHECK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (PyOS_CheckStack()) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_MemoryError, "stack overflow"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-04-28 16:06:54 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     clearerr(fp); /* Clear any previous error condition */ | 
					
						
							|  |  |  |     if (op == NULL) { | 
					
						
							|  |  |  |         Py_BEGIN_ALLOW_THREADS | 
					
						
							|  |  |  |         fprintf(fp, "<nil>"); | 
					
						
							|  |  |  |         Py_END_ALLOW_THREADS | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2018-10-26 02:12:34 +02:00
										 |  |  |         if (op->ob_refcnt <= 0) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             /* XXX(twouters) cast refcount to long until %zd is
 | 
					
						
							|  |  |  |                universally available */ | 
					
						
							|  |  |  |             Py_BEGIN_ALLOW_THREADS | 
					
						
							|  |  |  |             fprintf(fp, "<refcnt %ld at %p>", | 
					
						
							| 
									
										
										
										
											2019-05-06 10:56:51 -06:00
										 |  |  |                 (long)op->ob_refcnt, (void *)op); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											2018-10-26 02:12:34 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         else { | 
					
						
							|  |  |  |             PyObject *s; | 
					
						
							|  |  |  |             if (flags & Py_PRINT_RAW) | 
					
						
							|  |  |  |                 s = PyObject_Str(op); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 s = PyObject_Repr(op); | 
					
						
							|  |  |  |             if (s == NULL) | 
					
						
							|  |  |  |                 ret = -1; | 
					
						
							|  |  |  |             else if (PyBytes_Check(s)) { | 
					
						
							|  |  |  |                 fwrite(PyBytes_AS_STRING(s), 1, | 
					
						
							|  |  |  |                        PyBytes_GET_SIZE(s), fp); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else if (PyUnicode_Check(s)) { | 
					
						
							|  |  |  |                 PyObject *t; | 
					
						
							| 
									
										
										
										
											2011-09-28 07:41:54 +02:00
										 |  |  |                 t = PyUnicode_AsEncodedString(s, "utf-8", "backslashreplace"); | 
					
						
							| 
									
										
										
										
											2018-10-06 00:44:25 -06:00
										 |  |  |                 if (t == NULL) { | 
					
						
							|  |  |  |                     ret = -1; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 else { | 
					
						
							|  |  |  |                     fwrite(PyBytes_AS_STRING(t), 1, | 
					
						
							|  |  |  |                            PyBytes_GET_SIZE(t), fp); | 
					
						
							| 
									
										
										
										
											2010-05-17 09:33:42 +00:00
										 |  |  |                     Py_DECREF(t); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                              "str() or repr() returned '%.100s'", | 
					
						
							|  |  |  |                              s->ob_type->tp_name); | 
					
						
							|  |  |  |                 ret = -1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             Py_XDECREF(s); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ret == 0) { | 
					
						
							|  |  |  |         if (ferror(fp)) { | 
					
						
							| 
									
										
										
										
											2017-04-16 10:46:38 +03:00
										 |  |  |             PyErr_SetFromErrno(PyExc_OSError); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             clearerr(fp); | 
					
						
							|  |  |  |             ret = -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-21 23:36:26 +00:00
										 |  |  | /* For debugging convenience.  Set a breakpoint here and call it from your DLL */ | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
											  
											
												Merged revisions 53451-53537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r53454 | brett.cannon | 2007-01-15 20:12:08 +0100 (Mon, 15 Jan 2007) | 3 lines
  Add a note for strptime that just because strftime supports some extra
  directive that is not documented that strptime will as well.
........
  r53458 | vinay.sajip | 2007-01-16 10:50:07 +0100 (Tue, 16 Jan 2007) | 1 line
  Updated rotating file handlers to use _open().
........
  r53459 | marc-andre.lemburg | 2007-01-16 14:03:06 +0100 (Tue, 16 Jan 2007) | 2 lines
  Add news items for the recent pybench and platform changes.
........
  r53460 | sjoerd.mullender | 2007-01-16 17:42:38 +0100 (Tue, 16 Jan 2007) | 4 lines
  Fixed ntpath.expandvars to not replace references to non-existing
  variables with nothing.  Also added tests.
  This fixes bug #494589.
........
  r53464 | neal.norwitz | 2007-01-17 07:23:51 +0100 (Wed, 17 Jan 2007) | 1 line
  Give Calvin Spealman access for python-dev summaries.
........
  r53465 | neal.norwitz | 2007-01-17 09:37:26 +0100 (Wed, 17 Jan 2007) | 1 line
  Remove Calvin since he only has access to the website currently.
........
  r53466 | thomas.heller | 2007-01-17 10:40:34 +0100 (Wed, 17 Jan 2007) | 2 lines
  Replace C++ comments with C comments.
........
  r53472 | andrew.kuchling | 2007-01-17 20:55:06 +0100 (Wed, 17 Jan 2007) | 1 line
  [Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and warn user to lock/unlock mailboxes when modifying them
........
  r53475 | georg.brandl | 2007-01-17 22:09:04 +0100 (Wed, 17 Jan 2007) | 2 lines
  Bug #1637967: missing //= operator in list.
........
  r53477 | georg.brandl | 2007-01-17 22:19:58 +0100 (Wed, 17 Jan 2007) | 2 lines
  Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs.
........
  r53481 | neal.norwitz | 2007-01-18 06:40:58 +0100 (Thu, 18 Jan 2007) | 1 line
  Try reverting part of r53145 that seems to cause the Windows buildbots to fail in test_uu.UUFileTest.test_encode
........
  r53482 | fred.drake | 2007-01-18 06:42:30 +0100 (Thu, 18 Jan 2007) | 1 line
  add missing version entry
........
  r53483 | neal.norwitz | 2007-01-18 07:20:55 +0100 (Thu, 18 Jan 2007) | 7 lines
  This test doesn't pass on Windows.  The cause seems to be that chmod
  doesn't support the same funcationality as on Unix.  I'm not sure if
  this fix is the best (or if it will even work)--it's a test to see
  if the buildbots start passing again.
  It might be better to not even run this test if it's windows (or non-posix).
........
  r53488 | neal.norwitz | 2007-01-19 06:53:33 +0100 (Fri, 19 Jan 2007) | 1 line
  SF #1635217, Fix unbalanced paren
........
  r53489 | martin.v.loewis | 2007-01-19 07:42:22 +0100 (Fri, 19 Jan 2007) | 3 lines
  Prefix AST symbols with _Py_. Fixes #1637022.
  Will backport.
........
  r53497 | martin.v.loewis | 2007-01-19 19:01:38 +0100 (Fri, 19 Jan 2007) | 2 lines
  Add UUIDs for 2.5.1 and 2.5.2
........
  r53499 | raymond.hettinger | 2007-01-19 19:07:18 +0100 (Fri, 19 Jan 2007) | 1 line
  SF# 1635892:  Fix docs for betavariate's input parameters .
........
  r53503 | martin.v.loewis | 2007-01-20 15:05:39 +0100 (Sat, 20 Jan 2007) | 2 lines
  Merge 53501 and 53502 from 25 branch:
  Add /GS- for AMD64 and Itanium builds where missing.
........
  r53504 | walter.doerwald | 2007-01-20 18:28:31 +0100 (Sat, 20 Jan 2007) | 2 lines
  Port test_resource.py to unittest.
........
  r53505 | walter.doerwald | 2007-01-20 19:19:33 +0100 (Sat, 20 Jan 2007) | 2 lines
  Add argument tests an calls of resource.getrusage().
........
  r53506 | walter.doerwald | 2007-01-20 20:03:17 +0100 (Sat, 20 Jan 2007) | 2 lines
  resource.RUSAGE_BOTH might not exist.
........
  r53507 | walter.doerwald | 2007-01-21 00:07:28 +0100 (Sun, 21 Jan 2007) | 2 lines
  Port test_new.py to unittest.
........
  r53508 | martin.v.loewis | 2007-01-21 10:33:07 +0100 (Sun, 21 Jan 2007) | 2 lines
  Patch #1610575: Add support for _Bool to struct.
........
  r53509 | georg.brandl | 2007-01-21 11:28:43 +0100 (Sun, 21 Jan 2007) | 3 lines
  Bug #1486663: don't reject keyword arguments for subclasses of builtin
  types.
........
  r53511 | georg.brandl | 2007-01-21 11:35:10 +0100 (Sun, 21 Jan 2007) | 2 lines
  Patch #1627441: close sockets properly in urllib2.
........
  r53517 | georg.brandl | 2007-01-22 20:40:21 +0100 (Mon, 22 Jan 2007) | 3 lines
  Use new email module names (#1637162, #1637159, #1637157).
........
  r53518 | andrew.kuchling | 2007-01-22 21:26:40 +0100 (Mon, 22 Jan 2007) | 1 line
  Improve pattern used for mbox 'From' lines; add a simple test
........
  r53519 | andrew.kuchling | 2007-01-22 21:27:50 +0100 (Mon, 22 Jan 2007) | 1 line
  Make comment match the code
........
  r53522 | georg.brandl | 2007-01-22 22:10:33 +0100 (Mon, 22 Jan 2007) | 2 lines
  Bug #1249573: fix rfc822.parsedate not accepting a certain date format
........
  r53524 | georg.brandl | 2007-01-22 22:23:41 +0100 (Mon, 22 Jan 2007) | 2 lines
  Bug #1627316: handle error in condition/ignore pdb commands more gracefully.
........
  r53526 | lars.gustaebel | 2007-01-23 12:17:33 +0100 (Tue, 23 Jan 2007) | 4 lines
  Patch #1507247: tarfile.py: use current umask for intermediate
  directories.
........
  r53527 | thomas.wouters | 2007-01-23 14:42:00 +0100 (Tue, 23 Jan 2007) | 13 lines
  SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize
  When running the interpreter in an environment that would cause it to set
  stdout/stderr/stdin's encoding, having a sitecustomize that would replace
  them with something other than PyFile objects would crash the interpreter.
  Fix it by simply ignoring the encoding-setting for non-files.
  This could do with a test, but I can think of no maintainable and portable
  way to test this bug, short of adding a sitecustomize.py to the buildsystem
  and have it always run with it (hmmm....)
........
  r53528 | thomas.wouters | 2007-01-23 14:50:49 +0100 (Tue, 23 Jan 2007) | 4 lines
  Add news entry about last checkin (oops.)
........
  r53531 | martin.v.loewis | 2007-01-23 22:11:47 +0100 (Tue, 23 Jan 2007) | 4 lines
  Make PyTraceBack_Here use the current thread, not the
  frame's thread state. Fixes #1579370.
  Will backport.
........
  r53535 | brett.cannon | 2007-01-24 00:21:22 +0100 (Wed, 24 Jan 2007) | 5 lines
  Fix crasher for when an object's __del__ creates a new weakref to itself.
  Patch only fixes new-style classes; classic classes still buggy.
  Closes bug #1377858.  Already backported.
........
  r53536 | walter.doerwald | 2007-01-24 01:42:19 +0100 (Wed, 24 Jan 2007) | 2 lines
  Port test_popen.py to unittest.
........
											
										 
											2007-02-01 18:02:27 +00:00
										 |  |  | _Py_BreakPoint(void) | 
					
						
							| 
									
										
										
										
											2006-08-21 23:36:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-13 20:13:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-11 13:01:15 +02:00
										 |  |  | /* Heuristic checking if the object memory is uninitialized or deallocated.
 | 
					
						
							|  |  |  |    Rely on the debug hooks on Python memory allocators: | 
					
						
							|  |  |  |    see _PyMem_IsPtrFreed(). | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The function can be used to prevent segmentation fault on dereferencing | 
					
						
							| 
									
										
										
										
											2019-04-11 13:01:15 +02:00
										 |  |  |    pointers like 0xDDDDDDDDDDDDDDDD. */ | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  | int | 
					
						
							|  |  |  | _PyObject_IsFreed(PyObject *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-11 11:33:27 +02:00
										 |  |  |     if (_PyMem_IsPtrFreed(op) || _PyMem_IsPtrFreed(op->ob_type)) { | 
					
						
							| 
									
										
										
										
											2018-11-22 16:32:57 +01:00
										 |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-04-11 11:33:27 +02:00
										 |  |  |     /* ignore op->ob_ref: its value can have be modified
 | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |        by Py_INCREF() and Py_DECREF(). */ | 
					
						
							|  |  |  | #ifdef Py_TRACE_REFS
 | 
					
						
							| 
									
										
										
										
											2019-10-08 00:43:14 +01:00
										 |  |  |     if (op->_ob_next != NULL && _PyMem_IsPtrFreed(op->_ob_next)) { | 
					
						
							| 
									
										
										
										
											2019-04-11 11:33:27 +02:00
										 |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-10-08 00:43:14 +01:00
										 |  |  |     if (op->_ob_prev != NULL && _PyMem_IsPtrFreed(op->_ob_prev)) { | 
					
						
							|  |  |  |          return 1; | 
					
						
							|  |  |  |      } | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-04-11 11:33:27 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-23 16:24:35 +00:00
										 |  |  | /* For debugging convenience.  See Misc/gdbinit for some useful gdb hooks */ | 
					
						
							| 
									
										
										
										
											2006-08-21 23:36:26 +00:00
										 |  |  | void | 
					
						
							|  |  |  | _PyObject_Dump(PyObject* op) | 
					
						
							| 
									
										
										
										
											2001-01-23 16:24:35 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |     if (_PyObject_IsFreed(op)) { | 
					
						
							|  |  |  |         /* It seems like the object memory has been freed:
 | 
					
						
							|  |  |  |            don't access it to prevent a segmentation fault. */ | 
					
						
							| 
									
										
										
										
											2019-09-17 23:36:28 +02:00
										 |  |  |         fprintf(stderr, "<object at %p is freed>\n", op); | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |         fflush(stderr); | 
					
						
							| 
									
										
										
										
											2018-11-22 16:32:57 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |     /* first, write fields which are the least likely to crash */ | 
					
						
							|  |  |  |     fprintf(stderr, "object address  : %p\n", (void *)op); | 
					
						
							|  |  |  |     /* XXX(twouters) cast refcount to long until %zd is
 | 
					
						
							|  |  |  |        universally available */ | 
					
						
							|  |  |  |     fprintf(stderr, "object refcount : %ld\n", (long)op->ob_refcnt); | 
					
						
							|  |  |  |     fflush(stderr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyTypeObject *type = Py_TYPE(op); | 
					
						
							|  |  |  |     fprintf(stderr, "object type     : %p\n", type); | 
					
						
							|  |  |  |     fprintf(stderr, "object type name: %s\n", | 
					
						
							|  |  |  |             type==NULL ? "NULL" : type->tp_name); | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |     /* the most dangerous part */ | 
					
						
							|  |  |  |     fprintf(stderr, "object repr     : "); | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |     fflush(stderr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |     PyGILState_STATE gil = PyGILState_Ensure(); | 
					
						
							|  |  |  |     PyObject *error_type, *error_value, *error_traceback; | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |     PyErr_Fetch(&error_type, &error_value, &error_traceback); | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |     (void)PyObject_Print(op, stderr, 0); | 
					
						
							|  |  |  |     fflush(stderr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |     PyErr_Restore(error_type, error_value, error_traceback); | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |     PyGILState_Release(gil); | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     fprintf(stderr, "\n"); | 
					
						
							| 
									
										
										
										
											2018-10-23 17:39:40 +02:00
										 |  |  |     fflush(stderr); | 
					
						
							| 
									
										
										
										
											2001-01-23 16:24:35 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-01-23 16:33:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_Repr(PyObject *v) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *res; | 
					
						
							|  |  |  |     if (PyErr_CheckSignals()) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											1998-04-28 16:06:54 +00:00
										 |  |  | #ifdef USE_STACKCHECK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (PyOS_CheckStack()) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_MemoryError, "stack overflow"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-04-28 16:06:54 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         return PyUnicode_FromString("<NULL>"); | 
					
						
							|  |  |  |     if (Py_TYPE(v)->tp_repr == NULL) | 
					
						
							|  |  |  |         return PyUnicode_FromFormat("<%s object at %p>", | 
					
						
							|  |  |  |                                     v->ob_type->tp_name, v); | 
					
						
							| 
									
										
										
										
											2013-08-26 14:05:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2013-08-26 14:05:19 +02:00
										 |  |  | #ifdef Py_DEBUG
 | 
					
						
							|  |  |  |     /* PyObject_Repr() must not be called with an exception set,
 | 
					
						
							| 
									
										
										
										
											2017-01-18 14:12:51 +01:00
										 |  |  |        because it can clear it (directly or indirectly) and so the | 
					
						
							| 
									
										
										
										
											2015-10-07 10:26:23 +00:00
										 |  |  |        caller loses its exception */ | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     assert(!_PyErr_Occurred(tstate)); | 
					
						
							| 
									
										
										
										
											2013-08-26 14:05:19 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 22:12:11 +02:00
										 |  |  |     /* It is possible for a type to have a tp_repr representation that loops
 | 
					
						
							|  |  |  |        infinitely. */ | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     if (_Py_EnterRecursiveCall(tstate, | 
					
						
							|  |  |  |                                " while getting the repr of an object")) { | 
					
						
							| 
									
										
										
										
											2017-12-03 22:12:11 +02:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     res = (*v->ob_type->tp_repr)(v); | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     _Py_LeaveRecursiveCall(tstate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res == NULL) { | 
					
						
							| 
									
										
										
										
											2011-12-01 03:22:44 +01:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-12-01 03:22:44 +01:00
										 |  |  |     if (!PyUnicode_Check(res)) { | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |         _PyErr_Format(tstate, PyExc_TypeError, | 
					
						
							|  |  |  |                       "__repr__ returned non-string (type %.200s)", | 
					
						
							|  |  |  |                       res->ob_type->tp_name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         Py_DECREF(res); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-12-01 02:15:00 +01:00
										 |  |  | #ifndef Py_DEBUG
 | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     if (PyUnicode_READY(res) < 0) { | 
					
						
							| 
									
										
										
										
											2011-12-01 02:15:00 +01:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-12-01 02:15:00 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2007-05-18 17:15:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  | PyObject_Str(PyObject *v) | 
					
						
							| 
									
										
										
										
											1993-11-05 10:22:19 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *res; | 
					
						
							|  |  |  |     if (PyErr_CheckSignals()) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  | #ifdef USE_STACKCHECK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (PyOS_CheckStack()) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_MemoryError, "stack overflow"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         return PyUnicode_FromString("<NULL>"); | 
					
						
							|  |  |  |     if (PyUnicode_CheckExact(v)) { | 
					
						
							| 
									
										
										
										
											2011-12-01 02:15:00 +01:00
										 |  |  | #ifndef Py_DEBUG
 | 
					
						
							| 
									
										
										
										
											2011-11-20 19:48:36 +01:00
										 |  |  |         if (PyUnicode_READY(v) < 0) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2011-12-01 02:15:00 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         Py_INCREF(v); | 
					
						
							|  |  |  |         return v; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (Py_TYPE(v)->tp_str == NULL) | 
					
						
							|  |  |  |         return PyObject_Repr(v); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2013-08-26 14:05:19 +02:00
										 |  |  | #ifdef Py_DEBUG
 | 
					
						
							|  |  |  |     /* PyObject_Str() must not be called with an exception set,
 | 
					
						
							| 
									
										
										
										
											2017-01-18 14:12:51 +01:00
										 |  |  |        because it can clear it (directly or indirectly) and so the | 
					
						
							| 
									
										
										
										
											2014-02-09 10:43:21 +10:00
										 |  |  |        caller loses its exception */ | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     assert(!_PyErr_Occurred(tstate)); | 
					
						
							| 
									
										
										
										
											2013-08-26 14:05:19 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     /* It is possible for a type to have a tp_str representation that loops
 | 
					
						
							|  |  |  |        infinitely. */ | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     if (_Py_EnterRecursiveCall(tstate, " while getting the str of an object")) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     res = (*Py_TYPE(v)->tp_str)(v); | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     _Py_LeaveRecursiveCall(tstate); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (res == NULL) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (!PyUnicode_Check(res)) { | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |         _PyErr_Format(tstate, PyExc_TypeError, | 
					
						
							|  |  |  |                       "__str__ returned non-string (type %.200s)", | 
					
						
							|  |  |  |                       Py_TYPE(res)->tp_name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         Py_DECREF(res); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-12-01 02:15:00 +01:00
										 |  |  | #ifndef Py_DEBUG
 | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     if (PyUnicode_READY(res) < 0) { | 
					
						
							| 
									
										
										
										
											2011-11-20 19:48:36 +01:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-12-01 02:15:00 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-11-20 19:48:36 +01:00
										 |  |  |     assert(_PyUnicode_CheckConsistency(res, 1)); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2005-08-12 17:34:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-11 18:37:52 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyObject_ASCII(PyObject *v) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *repr, *ascii, *res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     repr = PyObject_Repr(v); | 
					
						
							|  |  |  |     if (repr == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2008-06-11 18:37:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 18:44:10 +02:00
										 |  |  |     if (PyUnicode_IS_ASCII(repr)) | 
					
						
							|  |  |  |         return repr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     /* repr is guaranteed to be a PyUnicode object by PyObject_Repr */ | 
					
						
							| 
									
										
										
										
											2011-09-28 07:41:54 +02:00
										 |  |  |     ascii = _PyUnicode_AsASCIIString(repr, "backslashreplace"); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_DECREF(repr); | 
					
						
							|  |  |  |     if (ascii == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2008-06-11 18:37:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     res = PyUnicode_DecodeASCII( | 
					
						
							|  |  |  |         PyBytes_AS_STRING(ascii), | 
					
						
							|  |  |  |         PyBytes_GET_SIZE(ascii), | 
					
						
							|  |  |  |         NULL); | 
					
						
							| 
									
										
										
										
											2008-06-11 18:37:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_DECREF(ascii); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2008-06-11 18:37:52 +00:00
										 |  |  | } | 
					
						
							| 
									
										
											  
											
												Changes to recursive-object comparisons, having to do with a test case
I found where rich comparison of unequal recursive objects gave
unintuituve results.  In a discussion with Tim, where we discovered
that our intuition on when a<=b should be true was failing, we decided
to outlaw ordering comparisons on recursive objects.  (Once we have
fixed our intuition and designed a matching algorithm that's practical
and reasonable to implement, we can allow such orderings again.)
- Refactored the recursive-object comparison framework; more is now
  done in the support routines so less needs to be done in the calling
  routines (even at the expense of slowing it down a bit -- this
  should normally never be invoked, it's mostly just there to avoid
  blowing up the interpreter).
- Changed the framework so that the comparison operator used is also
  stored.  (The dictionary now stores triples (v, w, op) instead of
  pairs (v, w).)
- Changed the nesting limit to a more reasonable small 20; this only
  slows down comparisons of very deeply nested objects (unlikely to
  occur in practice), while speeding up comparisons of recursive
  objects (previously, this would first waste time and space on 500
  nested comparisons before it would start detecting recursion).
- Changed rich comparisons for recursive objects to raise a ValueError
  exception when recursion is detected for ordering oprators (<, <=,
  >, >=).
Unrelated change:
- Moved PyObject_Unicode() to just under PyObject_Str(), where it
  belongs.  MAL's patch must've inserted in a random spot between two
  functions in the file -- between two helpers for rich comparison...
											
										 
											2001-01-18 22:07:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-26 16:46:47 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyObject_Bytes(PyObject *v) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *result, *func; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (v == NULL) | 
					
						
							|  |  |  |         return PyBytes_FromString("<NULL>"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PyBytes_CheckExact(v)) { | 
					
						
							|  |  |  |         Py_INCREF(v); | 
					
						
							|  |  |  |         return v; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-22 11:24:29 -05:00
										 |  |  |     func = _PyObject_LookupSpecial(v, &PyId___bytes__); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (func != NULL) { | 
					
						
							| 
									
										
										
										
											2016-12-06 18:46:19 +01:00
										 |  |  |         result = _PyObject_CallNoArg(func); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         Py_DECREF(func); | 
					
						
							|  |  |  |         if (result == NULL) | 
					
						
							| 
									
										
										
										
											2010-09-11 16:39:57 +00:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         if (!PyBytes_Check(result)) { | 
					
						
							| 
									
										
										
										
											2010-09-11 16:39:57 +00:00
										 |  |  |             PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                          "__bytes__ returned non-bytes (type %.200s)", | 
					
						
							|  |  |  |                          Py_TYPE(result)->tp_name); | 
					
						
							|  |  |  |             Py_DECREF(result); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return result; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (PyErr_Occurred()) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     return PyBytes_FromObject(v); | 
					
						
							| 
									
										
										
										
											2008-08-26 16:46:47 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-05 16:48:04 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  | def _PyObject_FunctionStr(x): | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         qualname = x.__qualname__ | 
					
						
							|  |  |  |     except AttributeError: | 
					
						
							|  |  |  |         return str(x) | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         mod = x.__module__ | 
					
						
							|  |  |  |         if mod is not None and mod != 'builtins': | 
					
						
							|  |  |  |             return f"{x.__module__}.{qualname}()" | 
					
						
							|  |  |  |     except AttributeError: | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  |     return qualname | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | _PyObject_FunctionStr(PyObject *x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     _Py_IDENTIFIER(__module__); | 
					
						
							|  |  |  |     _Py_IDENTIFIER(__qualname__); | 
					
						
							|  |  |  |     _Py_IDENTIFIER(builtins); | 
					
						
							|  |  |  |     assert(!PyErr_Occurred()); | 
					
						
							|  |  |  |     PyObject *qualname; | 
					
						
							|  |  |  |     int ret = _PyObject_LookupAttrId(x, &PyId___qualname__, &qualname); | 
					
						
							|  |  |  |     if (qualname == NULL) { | 
					
						
							|  |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return PyObject_Str(x); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PyObject *module; | 
					
						
							|  |  |  |     PyObject *result = NULL; | 
					
						
							|  |  |  |     ret = _PyObject_LookupAttrId(x, &PyId___module__, &module); | 
					
						
							|  |  |  |     if (module != NULL && module != Py_None) { | 
					
						
							|  |  |  |         PyObject *builtinsname = _PyUnicode_FromId(&PyId_builtins); | 
					
						
							|  |  |  |         if (builtinsname == NULL) { | 
					
						
							|  |  |  |             goto done; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         ret = PyObject_RichCompareBool(module, builtinsname, Py_NE); | 
					
						
							|  |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |             // error
 | 
					
						
							|  |  |  |             goto done; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (ret > 0) { | 
					
						
							|  |  |  |             result = PyUnicode_FromFormat("%S.%S()", module, qualname); | 
					
						
							|  |  |  |             goto done; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (ret < 0) { | 
					
						
							|  |  |  |         goto done; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     result = PyUnicode_FromFormat("%S()", qualname); | 
					
						
							|  |  |  | done: | 
					
						
							|  |  |  |     Py_DECREF(qualname); | 
					
						
							|  |  |  |     Py_XDECREF(module); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 13:59:22 +00:00
										 |  |  | /* For Python 3.0.1 and later, the old three-way comparison has been
 | 
					
						
							|  |  |  |    completely removed in favour of rich comparisons.  PyObject_Compare() and | 
					
						
							|  |  |  |    PyObject_Cmp() are gone, and the builtin cmp function no longer exists. | 
					
						
							| 
									
										
										
										
											2019-05-31 04:13:39 +02:00
										 |  |  |    The old tp_compare slot has been renamed to tp_as_async, and should no | 
					
						
							| 
									
										
										
										
											2009-02-01 13:59:22 +00:00
										 |  |  |    longer be used.  Use tp_richcompare instead. | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  |    See (*) below for practical amendments. | 
					
						
							| 
									
										
										
										
											2002-05-31 20:03:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 13:59:22 +00:00
										 |  |  |    tp_richcompare gets called with a first argument of the appropriate type | 
					
						
							|  |  |  |    and a second object of an arbitrary type.  We never do any kind of | 
					
						
							|  |  |  |    coercion. | 
					
						
							| 
									
										
										
										
											2002-05-31 20:03:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 13:59:22 +00:00
										 |  |  |    The tp_richcompare slot should return an object, as follows: | 
					
						
							| 
									
										
										
										
											2001-01-17 21:27:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  |     NULL if an exception occurred | 
					
						
							|  |  |  |     NotImplemented if the requested comparison is not implemented | 
					
						
							|  |  |  |     any other false value if the requested comparison is false | 
					
						
							|  |  |  |     any other true value if the requested comparison is true | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  |   The PyObject_RichCompare[Bool]() wrappers raise TypeError when they get | 
					
						
							|  |  |  |   NotImplemented. | 
					
						
							| 
									
										
										
										
											2001-01-04 01:48:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  |   (*) Practical amendments: | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  |   - If rich comparison returns NotImplemented, == and != are decided by | 
					
						
							|  |  |  |     comparing the object pointer (i.e. falling back to the base object | 
					
						
							|  |  |  |     implementation). | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2001-01-22 19:28:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  | /* Map rich comparison operators to their swapped version, e.g. LT <--> GT */ | 
					
						
							|  |  |  | int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE}; | 
					
						
							| 
									
										
										
										
											2001-06-09 07:34:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-25 19:53:18 +02:00
										 |  |  | static const char * const opstrings[] = {"<", "<=", "==", "!=", ">", ">="}; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  | /* Perform a rich comparison, raising TypeError when the requested comparison
 | 
					
						
							|  |  |  |    operator is not supported. */ | 
					
						
							| 
									
										
										
										
											2001-01-21 16:25:18 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  | do_richcompare(PyThreadState *tstate, PyObject *v, PyObject *w, int op) | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     richcmpfunc f; | 
					
						
							|  |  |  |     PyObject *res; | 
					
						
							|  |  |  |     int checked_reverse_op = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (v->ob_type != w->ob_type && | 
					
						
							|  |  |  |         PyType_IsSubtype(w->ob_type, v->ob_type) && | 
					
						
							|  |  |  |         (f = w->ob_type->tp_richcompare) != NULL) { | 
					
						
							|  |  |  |         checked_reverse_op = 1; | 
					
						
							|  |  |  |         res = (*f)(w, v, _Py_SwappedOp[op]); | 
					
						
							|  |  |  |         if (res != Py_NotImplemented) | 
					
						
							|  |  |  |             return res; | 
					
						
							|  |  |  |         Py_DECREF(res); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((f = v->ob_type->tp_richcompare) != NULL) { | 
					
						
							|  |  |  |         res = (*f)(v, w, op); | 
					
						
							|  |  |  |         if (res != Py_NotImplemented) | 
					
						
							|  |  |  |             return res; | 
					
						
							|  |  |  |         Py_DECREF(res); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!checked_reverse_op && (f = w->ob_type->tp_richcompare) != NULL) { | 
					
						
							|  |  |  |         res = (*f)(w, v, _Py_SwappedOp[op]); | 
					
						
							|  |  |  |         if (res != Py_NotImplemented) | 
					
						
							|  |  |  |             return res; | 
					
						
							|  |  |  |         Py_DECREF(res); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* If neither object implements it, provide a sensible default
 | 
					
						
							|  |  |  |        for == and !=, but raise an exception for ordering. */ | 
					
						
							|  |  |  |     switch (op) { | 
					
						
							|  |  |  |     case Py_EQ: | 
					
						
							|  |  |  |         res = (v == w) ? Py_True : Py_False; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case Py_NE: | 
					
						
							|  |  |  |         res = (v != w) ? Py_True : Py_False; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |         _PyErr_Format(tstate, PyExc_TypeError, | 
					
						
							|  |  |  |                       "'%s' not supported between instances of '%.100s' and '%.100s'", | 
					
						
							|  |  |  |                       opstrings[op], | 
					
						
							|  |  |  |                       v->ob_type->tp_name, | 
					
						
							|  |  |  |                       w->ob_type->tp_name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_INCREF(res); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  | /* Perform a rich comparison with object result.  This wraps do_richcompare()
 | 
					
						
							|  |  |  |    with a check for NULL arguments and a recursion check. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyObject_RichCompare(PyObject *v, PyObject *w, int op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     assert(Py_LT <= op && op <= Py_GE); | 
					
						
							|  |  |  |     if (v == NULL || w == NULL) { | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |         if (!_PyErr_Occurred(tstate)) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     if (_Py_EnterRecursiveCall(tstate, " in comparison")) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-11-05 00:51:22 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     PyObject *res = do_richcompare(tstate, v, w, op); | 
					
						
							|  |  |  |     _Py_LeaveRecursiveCall(tstate); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-24 00:41:19 +00:00
										 |  |  | /* Perform a rich comparison with integer result.  This wraps
 | 
					
						
							|  |  |  |    PyObject_RichCompare(), returning -1 for error, 0 for false, 1 for true. */ | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PyObject_RichCompareBool(PyObject *v, PyObject *w, int op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *res; | 
					
						
							|  |  |  |     int ok; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Quick result when objects are the same.
 | 
					
						
							|  |  |  |        Guarantees that identity implies equality. */ | 
					
						
							|  |  |  |     if (v == w) { | 
					
						
							|  |  |  |         if (op == Py_EQ) | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         else if (op == Py_NE) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     res = PyObject_RichCompare(v, w, op); | 
					
						
							|  |  |  |     if (res == NULL) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     if (PyBool_Check(res)) | 
					
						
							|  |  |  |         ok = (res == Py_True); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         ok = PyObject_IsTrue(res); | 
					
						
							|  |  |  |     Py_DECREF(res); | 
					
						
							|  |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											2001-01-17 15:24:28 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2000-06-29 19:17:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-17 20:54:53 +00:00
										 |  |  | Py_hash_t | 
					
						
							| 
									
										
										
										
											2008-07-15 15:46:38 +00:00
										 |  |  | PyObject_HashNotImplemented(PyObject *v) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'", | 
					
						
							|  |  |  |                  Py_TYPE(v)->tp_name); | 
					
						
							|  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2008-07-15 15:46:38 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2000-06-29 19:17:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-17 20:54:53 +00:00
										 |  |  | Py_hash_t | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_Hash(PyObject *v) | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyTypeObject *tp = Py_TYPE(v); | 
					
						
							|  |  |  |     if (tp->tp_hash != NULL) | 
					
						
							|  |  |  |         return (*tp->tp_hash)(v); | 
					
						
							|  |  |  |     /* To keep to the general practice that inheriting
 | 
					
						
							|  |  |  |      * solely from object in C code should work without | 
					
						
							|  |  |  |      * an explicit call to PyType_Ready, we implicitly call | 
					
						
							|  |  |  |      * PyType_Ready here and then check the tp_hash slot again | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (tp->tp_dict == NULL) { | 
					
						
							|  |  |  |         if (PyType_Ready(tp) < 0) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         if (tp->tp_hash != NULL) | 
					
						
							|  |  |  |             return (*tp->tp_hash)(v); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Otherwise, the object can't be hashed */ | 
					
						
							|  |  |  |     return PyObject_HashNotImplemented(v); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2005-12-10 18:50:16 +00:00
										 |  |  | PyObject_GetAttrString(PyObject *v, const char *name) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *w, *res; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:52:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (Py_TYPE(v)->tp_getattr != NULL) | 
					
						
							|  |  |  |         return (*Py_TYPE(v)->tp_getattr)(v, (char*)name); | 
					
						
							| 
									
										
										
										
											2017-02-21 23:57:25 +09:00
										 |  |  |     w = PyUnicode_FromString(name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (w == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     res = PyObject_GetAttr(v, w); | 
					
						
							| 
									
										
										
										
											2012-03-22 02:09:08 +01:00
										 |  |  |     Py_DECREF(w); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return res; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-07-11 19:55:34 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2005-12-10 18:50:16 +00:00
										 |  |  | PyObject_HasAttrString(PyObject *v, const char *name) | 
					
						
							| 
									
										
										
										
											1993-07-11 19:55:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *res = PyObject_GetAttrString(v, name); | 
					
						
							|  |  |  |     if (res != NULL) { | 
					
						
							|  |  |  |         Py_DECREF(res); | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PyErr_Clear(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											1993-07-11 19:55:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2005-12-10 18:50:16 +00:00
										 |  |  | PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *s; | 
					
						
							|  |  |  |     int res; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:52:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (Py_TYPE(v)->tp_setattr != NULL) | 
					
						
							|  |  |  |         return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w); | 
					
						
							|  |  |  |     s = PyUnicode_InternFromString(name); | 
					
						
							|  |  |  |     if (s == NULL) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     res = PyObject_SetAttr(v, s, w); | 
					
						
							|  |  |  |     Py_XDECREF(s); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											1993-05-12 08:24:20 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  | int | 
					
						
							|  |  |  | _PyObject_IsAbstract(PyObject *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int res; | 
					
						
							|  |  |  |     PyObject* isabstract; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (obj == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |     res = _PyObject_LookupAttrId(obj, &PyId___isabstractmethod__, &isabstract); | 
					
						
							|  |  |  |     if (res > 0) { | 
					
						
							|  |  |  |         res = PyObject_IsTrue(isabstract); | 
					
						
							|  |  |  |         Py_DECREF(isabstract); | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  |     } | 
					
						
							|  |  |  |     return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-09 10:38:36 +02:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | _PyObject_GetAttrId(PyObject *v, _Py_Identifier *name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							| 
									
										
										
										
											2011-11-07 13:00:05 +01:00
										 |  |  |     PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ | 
					
						
							| 
									
										
										
										
											2011-10-09 10:38:36 +02:00
										 |  |  |     if (!oname) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     result = PyObject_GetAttr(v, oname); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyObject_HasAttrId(PyObject *v, _Py_Identifier *name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int result; | 
					
						
							| 
									
										
										
										
											2011-11-07 13:00:05 +01:00
										 |  |  |     PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ | 
					
						
							| 
									
										
										
										
											2011-10-09 10:38:36 +02:00
										 |  |  |     if (!oname) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     result = PyObject_HasAttr(v, oname); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyObject_SetAttrId(PyObject *v, _Py_Identifier *name, PyObject *w) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int result; | 
					
						
							| 
									
										
										
										
											2011-11-07 13:00:05 +01:00
										 |  |  |     PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ | 
					
						
							| 
									
										
										
										
											2011-10-09 10:38:36 +02:00
										 |  |  |     if (!oname) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     result = PyObject_SetAttr(v, oname, w); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_GetAttr(PyObject *v, PyObject *name) | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyTypeObject *tp = Py_TYPE(v); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(name)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "attribute name must be string, not '%.200s'", | 
					
						
							|  |  |  |                      name->ob_type->tp_name); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (tp->tp_getattro != NULL) | 
					
						
							|  |  |  |         return (*tp->tp_getattro)(v, name); | 
					
						
							|  |  |  |     if (tp->tp_getattr != NULL) { | 
					
						
							| 
									
										
										
										
											2017-01-22 23:07:07 +02:00
										 |  |  |         const char *name_str = PyUnicode_AsUTF8(name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         if (name_str == NULL) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2017-01-22 23:07:07 +02:00
										 |  |  |         return (*tp->tp_getattr)(v, (char *)name_str); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     PyErr_Format(PyExc_AttributeError, | 
					
						
							|  |  |  |                  "'%.50s' object has no attribute '%U'", | 
					
						
							|  |  |  |                  tp->tp_name, name); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  | int | 
					
						
							|  |  |  | _PyObject_LookupAttr(PyObject *v, PyObject *name, PyObject **result) | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  | { | 
					
						
							|  |  |  |     PyTypeObject *tp = Py_TYPE(v); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(name)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "attribute name must be string, not '%.200s'", | 
					
						
							|  |  |  |                      name->ob_type->tp_name); | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |         *result = NULL; | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (tp->tp_getattro == PyObject_GenericGetAttr) { | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |         *result = _PyObject_GenericGetAttrWithDict(v, name, NULL, 1); | 
					
						
							|  |  |  |         if (*result != NULL) { | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (PyErr_Occurred()) { | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (tp->tp_getattro != NULL) { | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |         *result = (*tp->tp_getattro)(v, name); | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |     } | 
					
						
							|  |  |  |     else if (tp->tp_getattr != NULL) { | 
					
						
							|  |  |  |         const char *name_str = PyUnicode_AsUTF8(name); | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |         if (name_str == NULL) { | 
					
						
							|  |  |  |             *result = NULL; | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         *result = (*tp->tp_getattr)(v, (char *)name_str); | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-26 16:22:51 +09:00
										 |  |  |     else { | 
					
						
							|  |  |  |         *result = NULL; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |     if (*result != NULL) { | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |     if (!PyErr_ExceptionMatches(PyExc_AttributeError)) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     PyErr_Clear(); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyObject_LookupAttrId(PyObject *v, _Py_Identifier *name, PyObject **result) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ | 
					
						
							|  |  |  |     if (!oname) { | 
					
						
							|  |  |  |         *result = NULL; | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return  _PyObject_LookupAttr(v, oname, result); | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_HasAttr(PyObject *v, PyObject *name) | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |     PyObject *res; | 
					
						
							|  |  |  |     if (_PyObject_LookupAttr(v, name, &res) < 0) { | 
					
						
							|  |  |  |         PyErr_Clear(); | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-25 10:49:40 +02:00
										 |  |  |     if (res == NULL) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_DECREF(res); | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value) | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyTypeObject *tp = Py_TYPE(v); | 
					
						
							|  |  |  |     int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(name)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "attribute name must be string, not '%.200s'", | 
					
						
							|  |  |  |                      name->ob_type->tp_name); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_INCREF(name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyUnicode_InternInPlace(&name); | 
					
						
							|  |  |  |     if (tp->tp_setattro != NULL) { | 
					
						
							|  |  |  |         err = (*tp->tp_setattro)(v, name, value); | 
					
						
							|  |  |  |         Py_DECREF(name); | 
					
						
							|  |  |  |         return err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (tp->tp_setattr != NULL) { | 
					
						
							| 
									
										
										
										
											2017-01-22 23:07:07 +02:00
										 |  |  |         const char *name_str = PyUnicode_AsUTF8(name); | 
					
						
							| 
									
										
										
										
											2019-04-28 06:58:52 -06:00
										 |  |  |         if (name_str == NULL) { | 
					
						
							|  |  |  |             Py_DECREF(name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2019-04-28 06:58:52 -06:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-22 23:07:07 +02:00
										 |  |  |         err = (*tp->tp_setattr)(v, (char *)name_str, value); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         Py_DECREF(name); | 
					
						
							|  |  |  |         return err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_DECREF(name); | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |     _PyObject_ASSERT(name, name->ob_refcnt >= 1); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (tp->tp_getattr == NULL && tp->tp_getattro == NULL) | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "'%.100s' object has no attributes " | 
					
						
							|  |  |  |                      "(%s .%U)", | 
					
						
							|  |  |  |                      tp->tp_name, | 
					
						
							|  |  |  |                      value==NULL ? "del" : "assign to", | 
					
						
							|  |  |  |                      name); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "'%.100s' object has only read-only attributes " | 
					
						
							|  |  |  |                      "(%s .%U)", | 
					
						
							|  |  |  |                      tp->tp_name, | 
					
						
							|  |  |  |                      value==NULL ? "del" : "assign to", | 
					
						
							|  |  |  |                      name); | 
					
						
							|  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Helper to get a pointer to an object's __dict__ slot, if any */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject ** | 
					
						
							|  |  |  | _PyObject_GetDictPtr(PyObject *obj) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_ssize_t dictoffset; | 
					
						
							|  |  |  |     PyTypeObject *tp = Py_TYPE(obj); | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     dictoffset = tp->tp_dictoffset; | 
					
						
							|  |  |  |     if (dictoffset == 0) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     if (dictoffset < 0) { | 
					
						
							|  |  |  |         Py_ssize_t tsize; | 
					
						
							|  |  |  |         size_t size; | 
					
						
							| 
									
										
										
										
											2002-03-01 22:24:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         tsize = ((PyVarObject *)obj)->ob_size; | 
					
						
							|  |  |  |         if (tsize < 0) | 
					
						
							|  |  |  |             tsize = -tsize; | 
					
						
							|  |  |  |         size = _PyObject_VAR_SIZE(tp, tsize); | 
					
						
							| 
									
										
										
										
											2002-03-01 22:24:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         dictoffset += (long)size; | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |         _PyObject_ASSERT(obj, dictoffset > 0); | 
					
						
							|  |  |  |         _PyObject_ASSERT(obj, dictoffset % SIZEOF_VOID_P == 0); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return (PyObject **) ((char *)obj + dictoffset); | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-17 08:24:35 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2003-03-17 19:46:11 +00:00
										 |  |  | PyObject_SelfIter(PyObject *obj) | 
					
						
							| 
									
										
										
										
											2003-03-17 08:24:35 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_INCREF(obj); | 
					
						
							|  |  |  |     return obj; | 
					
						
							| 
									
										
										
										
											2003-03-17 08:24:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-12 23:58:21 +00:00
										 |  |  | /* Helper used when the __next__ method is removed from a type:
 | 
					
						
							|  |  |  |    tp_iternext is never NULL and can be safely called without checking | 
					
						
							|  |  |  |    on every iteration. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | _PyObject_NextNotImplemented(PyObject *self) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                  "'%.200s' object is not iterable", | 
					
						
							|  |  |  |                  Py_TYPE(self)->tp_name); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2009-01-12 23:58:21 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-13 19:03:51 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Specialized version of _PyObject_GenericGetAttrWithDict
 | 
					
						
							|  |  |  |    specifically for the LOAD_METHOD opcode. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Return 1 if a method is found, 0 if it's a regular attribute | 
					
						
							|  |  |  |    from __dict__ or something returned by using a descriptor | 
					
						
							|  |  |  |    protocol. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    `method` will point to the resolved attribute or NULL.  In the | 
					
						
							|  |  |  |    latter case, an error will be set. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyObject_GetMethod(PyObject *obj, PyObject *name, PyObject **method) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyTypeObject *tp = Py_TYPE(obj); | 
					
						
							|  |  |  |     PyObject *descr; | 
					
						
							|  |  |  |     descrgetfunc f = NULL; | 
					
						
							|  |  |  |     PyObject **dictptr, *dict; | 
					
						
							|  |  |  |     PyObject *attr; | 
					
						
							|  |  |  |     int meth_found = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(*method == NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (Py_TYPE(obj)->tp_getattro != PyObject_GenericGetAttr | 
					
						
							|  |  |  |             || !PyUnicode_Check(name)) { | 
					
						
							|  |  |  |         *method = PyObject_GetAttr(obj, name); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (tp->tp_dict == NULL && PyType_Ready(tp) < 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     descr = _PyType_Lookup(tp, name); | 
					
						
							|  |  |  |     if (descr != NULL) { | 
					
						
							|  |  |  |         Py_INCREF(descr); | 
					
						
							| 
									
										
										
										
											2019-05-28 14:42:53 +02:00
										 |  |  |         if (PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR)) { | 
					
						
							| 
									
										
										
										
											2016-12-13 19:03:51 -05:00
										 |  |  |             meth_found = 1; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             f = descr->ob_type->tp_descr_get; | 
					
						
							|  |  |  |             if (f != NULL && PyDescr_IsData(descr)) { | 
					
						
							|  |  |  |                 *method = f(descr, obj, (PyObject *)obj->ob_type); | 
					
						
							|  |  |  |                 Py_DECREF(descr); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dictptr = _PyObject_GetDictPtr(obj); | 
					
						
							|  |  |  |     if (dictptr != NULL && (dict = *dictptr) != NULL) { | 
					
						
							|  |  |  |         Py_INCREF(dict); | 
					
						
							| 
									
										
										
										
											2019-02-25 17:59:46 +02:00
										 |  |  |         attr = PyDict_GetItemWithError(dict, name); | 
					
						
							| 
									
										
										
										
											2016-12-13 19:03:51 -05:00
										 |  |  |         if (attr != NULL) { | 
					
						
							|  |  |  |             Py_INCREF(attr); | 
					
						
							|  |  |  |             *method = attr; | 
					
						
							|  |  |  |             Py_DECREF(dict); | 
					
						
							|  |  |  |             Py_XDECREF(descr); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-25 17:59:46 +02:00
										 |  |  |         else { | 
					
						
							|  |  |  |             Py_DECREF(dict); | 
					
						
							|  |  |  |             if (PyErr_Occurred()) { | 
					
						
							|  |  |  |                 Py_XDECREF(descr); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-12-13 19:03:51 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (meth_found) { | 
					
						
							|  |  |  |         *method = descr; | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (f != NULL) { | 
					
						
							|  |  |  |         *method = f(descr, obj, (PyObject *)Py_TYPE(obj)); | 
					
						
							|  |  |  |         Py_DECREF(descr); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (descr != NULL) { | 
					
						
							|  |  |  |         *method = descr; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyErr_Format(PyExc_AttributeError, | 
					
						
							|  |  |  |                  "'%.50s' object has no attribute '%U'", | 
					
						
							|  |  |  |                  tp->tp_name, name); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Generic GetAttr functions - put these in your tp_[gs]etattro slot. */ | 
					
						
							| 
									
										
										
										
											2004-09-14 17:09:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  | _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, | 
					
						
							|  |  |  |                                  PyObject *dict, int suppress) | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-13 19:03:51 -05:00
										 |  |  |     /* Make sure the logic of _PyObject_GetMethod is in sync with
 | 
					
						
							|  |  |  |        this method. | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  |        When suppress=1, this function suppress AttributeError. | 
					
						
							| 
									
										
										
										
											2016-12-13 19:03:51 -05:00
										 |  |  |     */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyTypeObject *tp = Py_TYPE(obj); | 
					
						
							|  |  |  |     PyObject *descr = NULL; | 
					
						
							|  |  |  |     PyObject *res = NULL; | 
					
						
							|  |  |  |     descrgetfunc f; | 
					
						
							|  |  |  |     Py_ssize_t dictoffset; | 
					
						
							|  |  |  |     PyObject **dictptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(name)){ | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "attribute name must be string, not '%.200s'", | 
					
						
							|  |  |  |                      name->ob_type->tp_name); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |     Py_INCREF(name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (tp->tp_dict == NULL) { | 
					
						
							|  |  |  |         if (PyType_Ready(tp) < 0) | 
					
						
							|  |  |  |             goto done; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     descr = _PyType_Lookup(tp, name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     f = NULL; | 
					
						
							|  |  |  |     if (descr != NULL) { | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |         Py_INCREF(descr); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         f = descr->ob_type->tp_descr_get; | 
					
						
							|  |  |  |         if (f != NULL && PyDescr_IsData(descr)) { | 
					
						
							|  |  |  |             res = f(descr, obj, (PyObject *)obj->ob_type); | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |             if (res == NULL && suppress && | 
					
						
							|  |  |  |                     PyErr_ExceptionMatches(PyExc_AttributeError)) { | 
					
						
							|  |  |  |                 PyErr_Clear(); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             goto done; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  |     if (dict == NULL) { | 
					
						
							|  |  |  |         /* Inline _PyObject_GetDictPtr */ | 
					
						
							|  |  |  |         dictoffset = tp->tp_dictoffset; | 
					
						
							|  |  |  |         if (dictoffset != 0) { | 
					
						
							|  |  |  |             if (dictoffset < 0) { | 
					
						
							|  |  |  |                 Py_ssize_t tsize; | 
					
						
							|  |  |  |                 size_t size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 tsize = ((PyVarObject *)obj)->ob_size; | 
					
						
							|  |  |  |                 if (tsize < 0) | 
					
						
							|  |  |  |                     tsize = -tsize; | 
					
						
							|  |  |  |                 size = _PyObject_VAR_SIZE(tp, tsize); | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |                 _PyObject_ASSERT(obj, size <= PY_SSIZE_T_MAX); | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |                 dictoffset += (Py_ssize_t)size; | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |                 _PyObject_ASSERT(obj, dictoffset > 0); | 
					
						
							|  |  |  |                 _PyObject_ASSERT(obj, dictoffset % SIZEOF_VOID_P == 0); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  |             dictptr = (PyObject **) ((char *)obj + dictoffset); | 
					
						
							|  |  |  |             dict = *dictptr; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (dict != NULL) { | 
					
						
							|  |  |  |         Py_INCREF(dict); | 
					
						
							| 
									
										
										
										
											2019-02-25 17:59:46 +02:00
										 |  |  |         res = PyDict_GetItemWithError(dict, name); | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  |         if (res != NULL) { | 
					
						
							|  |  |  |             Py_INCREF(res); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             Py_DECREF(dict); | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  |             goto done; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-25 17:59:46 +02:00
										 |  |  |         else { | 
					
						
							|  |  |  |             Py_DECREF(dict); | 
					
						
							|  |  |  |             if (PyErr_Occurred()) { | 
					
						
							|  |  |  |                 if (suppress && PyErr_ExceptionMatches(PyExc_AttributeError)) { | 
					
						
							|  |  |  |                     PyErr_Clear(); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 else { | 
					
						
							|  |  |  |                     goto done; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (f != NULL) { | 
					
						
							|  |  |  |         res = f(descr, obj, (PyObject *)Py_TYPE(obj)); | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |         if (res == NULL && suppress && | 
					
						
							|  |  |  |                 PyErr_ExceptionMatches(PyExc_AttributeError)) { | 
					
						
							|  |  |  |             PyErr_Clear(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         goto done; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (descr != NULL) { | 
					
						
							|  |  |  |         res = descr; | 
					
						
							| 
									
										
										
										
											2012-03-09 00:44:13 +01:00
										 |  |  |         descr = NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         goto done; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |     if (!suppress) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_AttributeError, | 
					
						
							|  |  |  |                      "'%.50s' object has no attribute '%U'", | 
					
						
							|  |  |  |                      tp->tp_name, name); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-12-04 15:54:53 +00:00
										 |  |  |   done: | 
					
						
							| 
									
										
										
										
											2012-03-09 00:44:13 +01:00
										 |  |  |     Py_XDECREF(descr); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_DECREF(name); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyObject_GenericGetAttr(PyObject *obj, PyObject *name) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-01-16 20:52:41 +09:00
										 |  |  |     return _PyObject_GenericGetAttrWithDict(obj, name, NULL, 0); | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  | _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name, | 
					
						
							|  |  |  |                                  PyObject *value, PyObject *dict) | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyTypeObject *tp = Py_TYPE(obj); | 
					
						
							|  |  |  |     PyObject *descr; | 
					
						
							|  |  |  |     descrsetfunc f; | 
					
						
							|  |  |  |     PyObject **dictptr; | 
					
						
							|  |  |  |     int res = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyUnicode_Check(name)){ | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "attribute name must be string, not '%.200s'", | 
					
						
							|  |  |  |                      name->ob_type->tp_name); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-09 07:25:32 -08:00
										 |  |  |     if (tp->tp_dict == NULL && PyType_Ready(tp) < 0) | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_INCREF(name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     descr = _PyType_Lookup(tp, name); | 
					
						
							| 
									
										
										
										
											2012-03-09 00:44:13 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (descr != NULL) { | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |         Py_INCREF(descr); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         f = descr->ob_type->tp_descr_set; | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |         if (f != NULL) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             res = f(descr, obj, value); | 
					
						
							|  |  |  |             goto done; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-23 08:45:22 -07:00
										 |  |  |     /* XXX [Steve Dower] These are really noisy - worth it? */ | 
					
						
							|  |  |  |     /*if (PyType_Check(obj) || PyModule_Check(obj)) {
 | 
					
						
							|  |  |  |         if (value && PySys_Audit("object.__setattr__", "OOO", obj, name, value) < 0) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         if (!value && PySys_Audit("object.__delattr__", "OO", obj, name) < 0) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |     }*/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  |     if (dict == NULL) { | 
					
						
							|  |  |  |         dictptr = _PyObject_GetDictPtr(obj); | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |         if (dictptr == NULL) { | 
					
						
							|  |  |  |             if (descr == NULL) { | 
					
						
							|  |  |  |                 PyErr_Format(PyExc_AttributeError, | 
					
						
							|  |  |  |                              "'%.100s' object has no attribute '%U'", | 
					
						
							|  |  |  |                              tp->tp_name, name); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 PyErr_Format(PyExc_AttributeError, | 
					
						
							|  |  |  |                              "'%.50s' object attribute '%U' is read-only", | 
					
						
							|  |  |  |                              tp->tp_name, name); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2012-04-23 11:24:50 -04:00
										 |  |  |             goto done; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |         res = _PyObjectDict_SetItem(tp, dictptr, name, value); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |     else { | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  |         Py_INCREF(dict); | 
					
						
							|  |  |  |         if (value == NULL) | 
					
						
							|  |  |  |             res = PyDict_DelItem(dict, name); | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             res = PyDict_SetItem(dict, name, value); | 
					
						
							| 
									
										
										
										
											2012-03-09 07:25:32 -08:00
										 |  |  |         Py_DECREF(dict); | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-04-17 20:31:51 +03:00
										 |  |  |     if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) | 
					
						
							|  |  |  |         PyErr_SetObject(PyExc_AttributeError, name); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-04 15:54:53 +00:00
										 |  |  |   done: | 
					
						
							| 
									
										
										
										
											2012-03-09 00:44:13 +01:00
										 |  |  |     Py_XDECREF(descr); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_DECREF(name); | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											1997-05-20 18:34:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-19 19:59:10 -05:00
										 |  |  | int | 
					
						
							|  |  |  | PyObject_GenericSetDict(PyObject *obj, PyObject *value, void *context) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-01-05 21:27:54 +02:00
										 |  |  |     PyObject **dictptr = _PyObject_GetDictPtr(obj); | 
					
						
							| 
									
										
										
										
											2012-02-19 19:59:10 -05:00
										 |  |  |     if (dictptr == NULL) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_AttributeError, | 
					
						
							|  |  |  |                         "This object has no __dict__"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (value == NULL) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_TypeError, "cannot delete __dict__"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PyDict_Check(value)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |                      "__dict__ must be set to a dictionary, " | 
					
						
							|  |  |  |                      "not a '%.200s'", Py_TYPE(value)->tp_name); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-01-05 21:27:54 +02:00
										 |  |  |     Py_INCREF(value); | 
					
						
							| 
									
										
										
										
											2016-04-06 09:50:03 +03:00
										 |  |  |     Py_XSETREF(*dictptr, value); | 
					
						
							| 
									
										
										
										
											2012-02-19 19:59:10 -05:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-28 18:17:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-05-12 08:24:20 +00:00
										 |  |  | /* Test a value used as condition, e.g., in a for or if statement.
 | 
					
						
							|  |  |  |    Return -1 if an error occurred */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_IsTrue(PyObject *v) | 
					
						
							| 
									
										
										
										
											1993-05-12 08:24:20 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     Py_ssize_t res; | 
					
						
							|  |  |  |     if (v == Py_True) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     if (v == Py_False) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (v == Py_None) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     else if (v->ob_type->tp_as_number != NULL && | 
					
						
							|  |  |  |              v->ob_type->tp_as_number->nb_bool != NULL) | 
					
						
							|  |  |  |         res = (*v->ob_type->tp_as_number->nb_bool)(v); | 
					
						
							|  |  |  |     else if (v->ob_type->tp_as_mapping != NULL && | 
					
						
							|  |  |  |              v->ob_type->tp_as_mapping->mp_length != NULL) | 
					
						
							|  |  |  |         res = (*v->ob_type->tp_as_mapping->mp_length)(v); | 
					
						
							|  |  |  |     else if (v->ob_type->tp_as_sequence != NULL && | 
					
						
							|  |  |  |              v->ob_type->tp_as_sequence->sq_length != NULL) | 
					
						
							|  |  |  |         res = (*v->ob_type->tp_as_sequence->sq_length)(v); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     /* if it is negative, it should be either -1 or -2 */ | 
					
						
							|  |  |  |     return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-07 05:13:56 +00:00
										 |  |  | /* equivalent of 'not v'
 | 
					
						
							| 
									
										
										
										
											1998-04-09 17:53:59 +00:00
										 |  |  |    Return -1 if an error occurred */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyObject_Not(PyObject *v) | 
					
						
							| 
									
										
										
										
											1998-04-09 17:53:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     int res; | 
					
						
							|  |  |  |     res = PyObject_IsTrue(v); | 
					
						
							|  |  |  |     if (res < 0) | 
					
						
							|  |  |  |         return res; | 
					
						
							|  |  |  |     return res == 0; | 
					
						
							| 
									
										
										
										
											1998-04-09 17:53:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-26 00:38:22 +00:00
										 |  |  | /* Test whether an object can be called */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | PyCallable_Check(PyObject *x) | 
					
						
							| 
									
										
										
										
											1995-01-26 00:38:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (x == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return x->ob_type->tp_call != NULL; | 
					
						
							| 
									
										
										
										
											1995-01-26 00:38:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-04 22:08:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-10 22:13:27 +00:00
										 |  |  | /* Helper for PyObject_Dir without arguments: returns the local scope. */ | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2007-04-13 01:39:34 +00:00
										 |  |  | _dir_locals(void) | 
					
						
							| 
									
										
										
										
											2007-03-10 22:13:27 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *names; | 
					
						
							| 
									
										
										
										
											2013-10-29 01:19:37 +01:00
										 |  |  |     PyObject *locals; | 
					
						
							| 
									
										
										
										
											2001-09-17 02:38:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:19:37 +01:00
										 |  |  |     locals = PyEval_GetLocals(); | 
					
						
							|  |  |  |     if (locals == NULL) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-03-10 22:13:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     names = PyMapping_Keys(locals); | 
					
						
							|  |  |  |     if (!names) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     if (!PyList_Check(names)) { | 
					
						
							|  |  |  |         PyErr_Format(PyExc_TypeError, | 
					
						
							|  |  |  |             "dir(): expected keys() of locals to be a list, " | 
					
						
							|  |  |  |             "not '%.200s'", Py_TYPE(names)->tp_name); | 
					
						
							|  |  |  |         Py_DECREF(names); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-06-11 16:12:08 -05:00
										 |  |  |     if (PyList_Sort(names)) { | 
					
						
							|  |  |  |         Py_DECREF(names); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     /* the locals don't need to be DECREF'd */ | 
					
						
							|  |  |  |     return names; | 
					
						
							| 
									
										
										
										
											2007-03-10 22:13:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-24 11:09:06 -05:00
										 |  |  | /* Helper for PyObject_Dir: object introspection. */ | 
					
						
							| 
									
										
										
										
											2007-03-10 22:13:27 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | _dir_object(PyObject *obj) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-11 16:12:08 -05:00
										 |  |  |     PyObject *result, *sorted; | 
					
						
							| 
									
										
										
										
											2012-01-22 11:24:29 -05:00
										 |  |  |     PyObject *dirfunc = _PyObject_LookupSpecial(obj, &PyId___dir__); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |     assert(obj != NULL); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (dirfunc == NULL) { | 
					
						
							| 
									
										
										
										
											2011-05-24 11:09:06 -05:00
										 |  |  |         if (!PyErr_Occurred()) | 
					
						
							|  |  |  |             PyErr_SetString(PyExc_TypeError, "object does not provide __dir__"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-05-24 11:09:06 -05:00
										 |  |  |     /* use __dir__ */ | 
					
						
							| 
									
										
										
										
											2016-12-06 18:46:19 +01:00
										 |  |  |     result = _PyObject_CallNoArg(dirfunc); | 
					
						
							| 
									
										
										
										
											2011-05-24 11:09:06 -05:00
										 |  |  |     Py_DECREF(dirfunc); | 
					
						
							|  |  |  |     if (result == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2011-06-11 16:12:08 -05:00
										 |  |  |     /* return sorted(result) */ | 
					
						
							|  |  |  |     sorted = PySequence_List(result); | 
					
						
							|  |  |  |     Py_DECREF(result); | 
					
						
							|  |  |  |     if (sorted == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     if (PyList_Sort(sorted)) { | 
					
						
							|  |  |  |         Py_DECREF(sorted); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-06-11 16:12:08 -05:00
										 |  |  |     return sorted; | 
					
						
							| 
									
										
										
										
											2007-03-10 22:13:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Implementation of dir() -- if obj is NULL, returns the names in the current
 | 
					
						
							|  |  |  |    (local) scope.  Otherwise, performs introspection of the object: returns a | 
					
						
							|  |  |  |    sorted list of attribute names (supposedly) accessible from the object | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyObject_Dir(PyObject *obj) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-11 16:12:08 -05:00
										 |  |  |     return (obj == NULL) ? _dir_locals() : _dir_object(obj); | 
					
						
							| 
									
										
										
										
											2001-09-04 22:08:56 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1995-01-26 00:38:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-07-28 09:55:13 -07:00
										 |  |  | None is a non-NULL undefined value. | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | There is (and should be!) no way to create other objects of this type, | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | so there is exactly one (which is indestructible, by the way). | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-03-27 17:26:13 +00:00
										 |  |  | /* ARGSUSED */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | none_repr(PyObject *op) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return PyUnicode_FromString("None"); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-23 16:24:35 +00:00
										 |  |  | /* ARGUSED */ | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2002-07-07 05:13:56 +00:00
										 |  |  | none_dealloc(PyObject* ignore) | 
					
						
							| 
									
										
										
										
											2001-01-23 16:24:35 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     /* This should never get called, but we also don't want to SEGV if
 | 
					
						
							|  |  |  |      * we accidentally decref None out of existence. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     Py_FatalError("deallocating None"); | 
					
						
							| 
									
										
										
										
											2001-01-23 16:24:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 18:19:43 -05:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | none_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-16 16:18:57 +02:00
										 |  |  |     if (PyTuple_GET_SIZE(args) || (kwargs && PyDict_GET_SIZE(kwargs))) { | 
					
						
							| 
									
										
										
										
											2011-07-29 18:19:43 -05:00
										 |  |  |         PyErr_SetString(PyExc_TypeError, "NoneType takes no arguments"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     Py_RETURN_NONE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-28 09:55:13 -07:00
										 |  |  | static int | 
					
						
							|  |  |  | none_bool(PyObject *v) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyNumberMethods none_as_number = { | 
					
						
							|  |  |  |     0,                          /* nb_add */ | 
					
						
							|  |  |  |     0,                          /* nb_subtract */ | 
					
						
							|  |  |  |     0,                          /* nb_multiply */ | 
					
						
							|  |  |  |     0,                          /* nb_remainder */ | 
					
						
							|  |  |  |     0,                          /* nb_divmod */ | 
					
						
							|  |  |  |     0,                          /* nb_power */ | 
					
						
							|  |  |  |     0,                          /* nb_negative */ | 
					
						
							|  |  |  |     0,                          /* nb_positive */ | 
					
						
							|  |  |  |     0,                          /* nb_absolute */ | 
					
						
							|  |  |  |     (inquiry)none_bool,         /* nb_bool */ | 
					
						
							|  |  |  |     0,                          /* nb_invert */ | 
					
						
							|  |  |  |     0,                          /* nb_lshift */ | 
					
						
							|  |  |  |     0,                          /* nb_rshift */ | 
					
						
							|  |  |  |     0,                          /* nb_and */ | 
					
						
							|  |  |  |     0,                          /* nb_xor */ | 
					
						
							|  |  |  |     0,                          /* nb_or */ | 
					
						
							|  |  |  |     0,                          /* nb_int */ | 
					
						
							|  |  |  |     0,                          /* nb_reserved */ | 
					
						
							|  |  |  |     0,                          /* nb_float */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_add */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_subtract */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_multiply */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_remainder */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_power */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_lshift */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_rshift */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_and */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_xor */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_or */ | 
					
						
							|  |  |  |     0,                          /* nb_floor_divide */ | 
					
						
							|  |  |  |     0,                          /* nb_true_divide */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_floor_divide */ | 
					
						
							|  |  |  |     0,                          /* nb_inplace_true_divide */ | 
					
						
							|  |  |  |     0,                          /* nb_index */ | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2001-01-23 16:24:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-30 17:55:48 -08:00
										 |  |  | PyTypeObject _PyNone_Type = { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyVarObject_HEAD_INIT(&PyType_Type, 0) | 
					
						
							|  |  |  |     "NoneType", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     none_dealloc,       /*tp_dealloc*/ /*never called*/ | 
					
						
							| 
									
										
										
										
											2019-05-31 04:13:39 +02:00
										 |  |  |     0,                  /*tp_vectorcall_offset*/ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     0,                  /*tp_getattr*/ | 
					
						
							|  |  |  |     0,                  /*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											2019-05-31 04:13:39 +02:00
										 |  |  |     0,                  /*tp_as_async*/ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     none_repr,          /*tp_repr*/ | 
					
						
							| 
									
										
										
										
											2011-07-28 09:55:13 -07:00
										 |  |  |     &none_as_number,    /*tp_as_number*/ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     0,                  /*tp_as_sequence*/ | 
					
						
							|  |  |  |     0,                  /*tp_as_mapping*/ | 
					
						
							|  |  |  |     0,                  /*tp_hash */ | 
					
						
							| 
									
										
										
										
											2011-07-29 18:19:43 -05:00
										 |  |  |     0,                  /*tp_call */ | 
					
						
							|  |  |  |     0,                  /*tp_str */ | 
					
						
							|  |  |  |     0,                  /*tp_getattro */ | 
					
						
							|  |  |  |     0,                  /*tp_setattro */ | 
					
						
							|  |  |  |     0,                  /*tp_as_buffer */ | 
					
						
							|  |  |  |     Py_TPFLAGS_DEFAULT, /*tp_flags */ | 
					
						
							|  |  |  |     0,                  /*tp_doc */ | 
					
						
							|  |  |  |     0,                  /*tp_traverse */ | 
					
						
							|  |  |  |     0,                  /*tp_clear */ | 
					
						
							|  |  |  |     0,                  /*tp_richcompare */ | 
					
						
							|  |  |  |     0,                  /*tp_weaklistoffset */ | 
					
						
							|  |  |  |     0,                  /*tp_iter */ | 
					
						
							|  |  |  |     0,                  /*tp_iternext */ | 
					
						
							|  |  |  |     0,                  /*tp_methods */ | 
					
						
							|  |  |  |     0,                  /*tp_members */ | 
					
						
							|  |  |  |     0,                  /*tp_getset */ | 
					
						
							|  |  |  |     0,                  /*tp_base */ | 
					
						
							|  |  |  |     0,                  /*tp_dict */ | 
					
						
							|  |  |  |     0,                  /*tp_descr_get */ | 
					
						
							|  |  |  |     0,                  /*tp_descr_set */ | 
					
						
							|  |  |  |     0,                  /*tp_dictoffset */ | 
					
						
							|  |  |  |     0,                  /*tp_init */ | 
					
						
							|  |  |  |     0,                  /*tp_alloc */ | 
					
						
							|  |  |  |     none_new,           /*tp_new */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject _Py_NoneStruct = { | 
					
						
							| 
									
										
											  
											
												Merged revisions 56467-56482 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
................
  r56477 | martin.v.loewis | 2007-07-21 09:04:38 +0200 (Sa, 21 Jul 2007) | 11 lines
  Merged revisions 56466-56476 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk
  ........
    r56476 | martin.v.loewis | 2007-07-21 08:55:02 +0200 (Sa, 21 Jul 2007) | 4 lines
    PEP 3123: Provide forward compatibility with Python 3.0, while keeping
    backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and
    PyVarObject_HEAD_INIT.
  ........
................
  r56478 | martin.v.loewis | 2007-07-21 09:47:23 +0200 (Sa, 21 Jul 2007) | 2 lines
  PEP 3123: Use proper C inheritance for PyObject.
................
  r56479 | martin.v.loewis | 2007-07-21 10:06:55 +0200 (Sa, 21 Jul 2007) | 3 lines
  Add longintrepr.h to Python.h, so that the compiler can
  see that PyFalse is really some kind of PyObject*.
................
  r56480 | martin.v.loewis | 2007-07-21 10:47:18 +0200 (Sa, 21 Jul 2007) | 2 lines
  Qualify SHIFT, MASK, BASE.
................
  r56482 | martin.v.loewis | 2007-07-21 19:10:57 +0200 (Sa, 21 Jul 2007) | 2 lines
  Correctly refer to _ob_next.
................
											
										 
											2007-07-21 17:22:18 +00:00
										 |  |  |   _PyObject_EXTRA_INIT | 
					
						
							| 
									
										
										
										
											2013-11-30 17:55:48 -08:00
										 |  |  |   1, &_PyNone_Type | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-04 01:48:10 +00:00
										 |  |  | /* NotImplemented is an object that can be used to signal that an
 | 
					
						
							|  |  |  |    operation is not implemented for the given type combination. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | NotImplemented_repr(PyObject *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return PyUnicode_FromString("NotImplemented"); | 
					
						
							| 
									
										
										
										
											2001-01-04 01:48:10 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-24 02:53:45 -08:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2018-04-30 00:29:33 +05:30
										 |  |  | NotImplemented_reduce(PyObject *op, PyObject *Py_UNUSED(ignored)) | 
					
						
							| 
									
										
										
										
											2013-11-24 02:53:45 -08:00
										 |  |  | { | 
					
						
							|  |  |  |     return PyUnicode_FromString("NotImplemented"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef notimplemented_methods[] = { | 
					
						
							| 
									
										
										
										
											2018-04-30 00:29:33 +05:30
										 |  |  |     {"__reduce__", NotImplemented_reduce, METH_NOARGS, NULL}, | 
					
						
							| 
									
										
										
										
											2013-11-24 02:53:45 -08:00
										 |  |  |     {NULL, NULL} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-29 18:27:44 -05:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | notimplemented_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-16 16:18:57 +02:00
										 |  |  |     if (PyTuple_GET_SIZE(args) || (kwargs && PyDict_GET_SIZE(kwargs))) { | 
					
						
							| 
									
										
										
										
											2011-07-29 18:27:44 -05:00
										 |  |  |         PyErr_SetString(PyExc_TypeError, "NotImplementedType takes no arguments"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-10 20:28:54 -05:00
										 |  |  |     Py_RETURN_NOTIMPLEMENTED; | 
					
						
							| 
									
										
										
										
											2011-07-29 18:27:44 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-06 14:28:58 +02:00
										 |  |  | static void | 
					
						
							|  |  |  | notimplemented_dealloc(PyObject* ignore) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* This should never get called, but we also don't want to SEGV if
 | 
					
						
							|  |  |  |      * we accidentally decref NotImplemented out of existence. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     Py_FatalError("deallocating NotImplemented"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-30 17:55:48 -08:00
										 |  |  | PyTypeObject _PyNotImplemented_Type = { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyVarObject_HEAD_INIT(&PyType_Type, 0) | 
					
						
							|  |  |  |     "NotImplementedType", | 
					
						
							|  |  |  |     0, | 
					
						
							|  |  |  |     0, | 
					
						
							| 
									
										
										
										
											2012-10-06 14:28:58 +02:00
										 |  |  |     notimplemented_dealloc,       /*tp_dealloc*/ /*never called*/ | 
					
						
							| 
									
										
										
										
											2019-05-31 04:13:39 +02:00
										 |  |  |     0,                  /*tp_vectorcall_offset*/ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     0,                  /*tp_getattr*/ | 
					
						
							|  |  |  |     0,                  /*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											2019-05-31 04:13:39 +02:00
										 |  |  |     0,                  /*tp_as_async*/ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     NotImplemented_repr, /*tp_repr*/ | 
					
						
							|  |  |  |     0,                  /*tp_as_number*/ | 
					
						
							|  |  |  |     0,                  /*tp_as_sequence*/ | 
					
						
							|  |  |  |     0,                  /*tp_as_mapping*/ | 
					
						
							|  |  |  |     0,                  /*tp_hash */ | 
					
						
							| 
									
										
										
										
											2011-07-29 18:27:44 -05:00
										 |  |  |     0,                  /*tp_call */ | 
					
						
							|  |  |  |     0,                  /*tp_str */ | 
					
						
							|  |  |  |     0,                  /*tp_getattro */ | 
					
						
							|  |  |  |     0,                  /*tp_setattro */ | 
					
						
							|  |  |  |     0,                  /*tp_as_buffer */ | 
					
						
							|  |  |  |     Py_TPFLAGS_DEFAULT, /*tp_flags */ | 
					
						
							|  |  |  |     0,                  /*tp_doc */ | 
					
						
							|  |  |  |     0,                  /*tp_traverse */ | 
					
						
							|  |  |  |     0,                  /*tp_clear */ | 
					
						
							|  |  |  |     0,                  /*tp_richcompare */ | 
					
						
							|  |  |  |     0,                  /*tp_weaklistoffset */ | 
					
						
							|  |  |  |     0,                  /*tp_iter */ | 
					
						
							|  |  |  |     0,                  /*tp_iternext */ | 
					
						
							| 
									
										
										
										
											2013-11-24 02:53:45 -08:00
										 |  |  |     notimplemented_methods, /*tp_methods */ | 
					
						
							| 
									
										
										
										
											2011-07-29 18:27:44 -05:00
										 |  |  |     0,                  /*tp_members */ | 
					
						
							|  |  |  |     0,                  /*tp_getset */ | 
					
						
							|  |  |  |     0,                  /*tp_base */ | 
					
						
							|  |  |  |     0,                  /*tp_dict */ | 
					
						
							|  |  |  |     0,                  /*tp_descr_get */ | 
					
						
							|  |  |  |     0,                  /*tp_descr_set */ | 
					
						
							|  |  |  |     0,                  /*tp_dictoffset */ | 
					
						
							|  |  |  |     0,                  /*tp_init */ | 
					
						
							|  |  |  |     0,                  /*tp_alloc */ | 
					
						
							|  |  |  |     notimplemented_new, /*tp_new */ | 
					
						
							| 
									
										
										
										
											2001-01-04 01:48:10 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject _Py_NotImplementedStruct = { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     _PyObject_EXTRA_INIT | 
					
						
							| 
									
										
										
										
											2013-11-30 17:55:48 -08:00
										 |  |  |     1, &_PyNotImplemented_Type | 
					
						
							| 
									
										
										
										
											2001-01-04 01:48:10 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-27 16:39:22 +02:00
										 |  |  | PyStatus | 
					
						
							| 
									
										
										
										
											2019-01-23 15:04:40 +01:00
										 |  |  | _PyTypes_Init(void) | 
					
						
							| 
									
										
										
										
											2001-08-16 08:17:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-01-22 21:18:05 +01:00
										 |  |  | #define INIT_TYPE(TYPE, NAME) \
 | 
					
						
							|  |  |  |     do { \ | 
					
						
							|  |  |  |         if (PyType_Ready(TYPE) < 0) { \ | 
					
						
							| 
									
										
										
										
											2019-05-27 16:39:22 +02:00
										 |  |  |             return _PyStatus_ERR("Can't initialize " NAME " type"); \ | 
					
						
							| 
									
										
										
										
											2019-01-22 21:18:05 +01:00
										 |  |  |         } \ | 
					
						
							|  |  |  |     } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     INIT_TYPE(&PyBaseObject_Type, "object"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyType_Type, "type"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyWeakref_RefType, "weakref"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyWeakref_CallableProxyType, "callable weakref proxy"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyWeakref_ProxyType, "weakref proxy"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyLong_Type, "int"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyBool_Type, "bool"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyByteArray_Type, "bytearray"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyBytes_Type, "str"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyList_Type, "list"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyNone_Type, "None"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyNotImplemented_Type, "NotImplemented"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyTraceBack_Type, "traceback"); | 
					
						
							|  |  |  |     INIT_TYPE(&PySuper_Type, "super"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyRange_Type, "range"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDict_Type, "dict"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDictKeys_Type, "dict keys"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDictValues_Type, "dict values"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDictItems_Type, "dict items"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDictRevIterKey_Type, "reversed dict keys"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDictRevIterValue_Type, "reversed dict values"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDictRevIterItem_Type, "reversed dict items"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyODict_Type, "OrderedDict"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyODictKeys_Type, "odict_keys"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyODictItems_Type, "odict_items"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyODictValues_Type, "odict_values"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyODictIter_Type, "odict_keyiterator"); | 
					
						
							|  |  |  |     INIT_TYPE(&PySet_Type, "set"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyUnicode_Type, "str"); | 
					
						
							|  |  |  |     INIT_TYPE(&PySlice_Type, "slice"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyStaticMethod_Type, "static method"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyComplex_Type, "complex"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyFloat_Type, "float"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyFrozenSet_Type, "frozenset"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyProperty_Type, "property"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyManagedBuffer_Type, "managed buffer"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyMemoryView_Type, "memoryview"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyTuple_Type, "tuple"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyEnum_Type, "enumerate"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyReversed_Type, "reversed"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyStdPrinter_Type, "StdPrinter"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyCode_Type, "code"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyFrame_Type, "frame"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyCFunction_Type, "builtin function"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyMethod_Type, "method"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyFunction_Type, "function"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyDictProxy_Type, "dict proxy"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyGen_Type, "generator"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyGetSetDescr_Type, "get-set descriptor"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyWrapperDescr_Type, "wrapper"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyMethodWrapper_Type, "method wrapper"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyEllipsis_Type, "ellipsis"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyMemberDescr_Type, "member descriptor"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyNamespace_Type, "namespace"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyCapsule_Type, "capsule"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyLongRangeIter_Type, "long range iterator"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyCell_Type, "cell"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyInstanceMethod_Type, "instance method"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyClassMethodDescr_Type, "class method descr"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyMethodDescr_Type, "method descr"); | 
					
						
							|  |  |  |     INIT_TYPE(&PyCallIter_Type, "call iter"); | 
					
						
							|  |  |  |     INIT_TYPE(&PySeqIter_Type, "sequence iterator"); | 
					
						
							| 
									
										
										
										
											2019-05-26 17:10:09 +02:00
										 |  |  |     INIT_TYPE(&PyPickleBuffer_Type, "pickle.PickleBuffer"); | 
					
						
							| 
									
										
										
										
											2019-01-22 21:18:05 +01:00
										 |  |  |     INIT_TYPE(&PyCoro_Type, "coroutine"); | 
					
						
							|  |  |  |     INIT_TYPE(&_PyCoroWrapper_Type, "coroutine wrapper"); | 
					
						
							| 
									
										
										
										
											2019-03-15 16:35:46 -06:00
										 |  |  |     INIT_TYPE(&_PyInterpreterID_Type, "interpreter ID"); | 
					
						
							| 
									
										
										
										
											2019-05-27 16:39:22 +02:00
										 |  |  |     return _PyStatus_OK(); | 
					
						
							| 
									
										
										
										
											2019-01-22 21:18:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef INIT_TYPE
 | 
					
						
							| 
									
										
										
										
											2001-08-16 08:17:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-05-22 16:34:47 +00:00
										 |  |  | #ifdef Py_TRACE_REFS
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-12 21:32:12 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | _Py_NewReference(PyObject *op) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-10-25 13:31:16 +02:00
										 |  |  |     if (_Py_tracemalloc_config.tracing) { | 
					
						
							|  |  |  |         _PyTraceMalloc_NewReference(op); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     _Py_INC_REFTOTAL; | 
					
						
							|  |  |  |     op->ob_refcnt = 1; | 
					
						
							|  |  |  |     _Py_AddToAllObjects(op, 1); | 
					
						
							|  |  |  |     _Py_INC_TPALLOCS(op); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-12 21:32:12 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2013-08-13 20:18:52 +02:00
										 |  |  | _Py_ForgetReference(PyObject *op) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-01-20 22:32:56 +00:00
										 |  |  | #ifdef SLOW_UNREF_CHECK
 | 
					
						
							| 
									
										
										
										
											2013-08-13 20:18:52 +02:00
										 |  |  |     PyObject *p; | 
					
						
							| 
									
										
										
										
											2000-01-20 22:32:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (op->ob_refcnt < 0) | 
					
						
							|  |  |  |         Py_FatalError("UNREF negative refcnt"); | 
					
						
							|  |  |  |     if (op == &refchain || | 
					
						
							|  |  |  |         op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op) { | 
					
						
							|  |  |  |         fprintf(stderr, "* ob\n"); | 
					
						
							|  |  |  |         _PyObject_Dump(op); | 
					
						
							|  |  |  |         fprintf(stderr, "* op->_ob_prev->_ob_next\n"); | 
					
						
							|  |  |  |         _PyObject_Dump(op->_ob_prev->_ob_next); | 
					
						
							|  |  |  |         fprintf(stderr, "* op->_ob_next->_ob_prev\n"); | 
					
						
							|  |  |  |         _PyObject_Dump(op->_ob_next->_ob_prev); | 
					
						
							|  |  |  |         Py_FatalError("UNREF invalid object"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1992-09-03 20:32:55 +00:00
										 |  |  | #ifdef SLOW_UNREF_CHECK
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) { | 
					
						
							|  |  |  |         if (p == op) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (p == &refchain) /* Not found */ | 
					
						
							|  |  |  |         Py_FatalError("UNREF unknown object"); | 
					
						
							| 
									
										
										
										
											1992-09-03 20:32:55 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     op->_ob_next->_ob_prev = op->_ob_prev; | 
					
						
							|  |  |  |     op->_ob_prev->_ob_next = op->_ob_next; | 
					
						
							|  |  |  |     op->_ob_next = op->_ob_prev = NULL; | 
					
						
							|  |  |  |     _Py_INC_TPFREES(op); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-17 19:52:29 +00:00
										 |  |  | /* Print all live objects.  Because PyObject_Print is called, the
 | 
					
						
							|  |  |  |  * interpreter must be in a healthy state. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1996-08-12 21:32:12 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | _Py_PrintReferences(FILE *fp) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *op; | 
					
						
							|  |  |  |     fprintf(fp, "Remaining objects:\n"); | 
					
						
							|  |  |  |     for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) { | 
					
						
							| 
									
										
										
										
											2019-05-06 10:56:51 -06:00
										 |  |  |         fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", (void *)op, op->ob_refcnt); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         if (PyObject_Print(op, fp, 0) != 0) | 
					
						
							|  |  |  |             PyErr_Clear(); | 
					
						
							|  |  |  |         putc('\n', fp); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-17 19:52:29 +00:00
										 |  |  | /* Print the addresses of all live objects.  Unlike _Py_PrintReferences, this
 | 
					
						
							|  |  |  |  * doesn't make any calls to the Python C API, so is always safe to call. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | _Py_PrintReferenceAddresses(FILE *fp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *op; | 
					
						
							|  |  |  |     fprintf(fp, "Remaining object addresses:\n"); | 
					
						
							|  |  |  |     for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) | 
					
						
							| 
									
										
										
										
											2019-05-06 10:56:51 -06:00
										 |  |  |         fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", (void *)op, | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             op->ob_refcnt, Py_TYPE(op)->tp_name); | 
					
						
							| 
									
										
										
										
											2003-04-17 19:52:29 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-29 09:18:14 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | _Py_GetObjects(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1995-08-29 09:18:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     int i, n; | 
					
						
							|  |  |  |     PyObject *t = NULL; | 
					
						
							|  |  |  |     PyObject *res, *op; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PyArg_ParseTuple(args, "i|O", &n, &t)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     op = refchain._ob_next; | 
					
						
							|  |  |  |     res = PyList_New(0); | 
					
						
							|  |  |  |     if (res == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     for (i = 0; (n == 0 || i < n) && op != &refchain; i++) { | 
					
						
							|  |  |  |         while (op == self || op == args || op == res || op == t || | 
					
						
							|  |  |  |                (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) { | 
					
						
							|  |  |  |             op = op->_ob_next; | 
					
						
							|  |  |  |             if (op == &refchain) | 
					
						
							|  |  |  |                 return res; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (PyList_Append(res, op) < 0) { | 
					
						
							|  |  |  |             Py_DECREF(res); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         op = op->_ob_next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											1995-08-29 09:18:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1996-01-12 01:24:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-05-22 16:34:47 +00:00
										 |  |  | /* Hack to force loading of abstract.o */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size; | 
					
						
							| 
									
										
										
										
											1997-08-05 02:04:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-22 14:55:41 -04:00
										 |  |  | void | 
					
						
							|  |  |  | _PyObject_DebugTypeStats(FILE *out) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     _PyDict_DebugMallocStats(out); | 
					
						
							|  |  |  |     _PyFloat_DebugMallocStats(out); | 
					
						
							|  |  |  |     _PyFrame_DebugMallocStats(out); | 
					
						
							|  |  |  |     _PyList_DebugMallocStats(out); | 
					
						
							|  |  |  |     _PyTuple_DebugMallocStats(out); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-10 22:32:46 +00:00
										 |  |  | /* These methods are used to control infinite recursion in repr, str, print,
 | 
					
						
							|  |  |  |    etc.  Container objects that may recursively contain themselves, | 
					
						
							| 
									
										
										
										
											2016-05-29 04:13:35 +00:00
										 |  |  |    e.g. builtin dictionaries and lists, should use Py_ReprEnter() and | 
					
						
							| 
									
										
										
										
											1998-04-10 22:32:46 +00:00
										 |  |  |    Py_ReprLeave() to avoid infinite recursion. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Py_ReprEnter() returns 0 the first time it is called for a particular | 
					
						
							|  |  |  |    object and 1 every time thereafter.  It returns -1 if an exception | 
					
						
							|  |  |  |    occurred.  Py_ReprLeave() has no return value. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    See dictobject.c and listobject.c for examples of use. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | Py_ReprEnter(PyObject *obj) | 
					
						
							| 
									
										
										
										
											1998-04-10 22:32:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *dict; | 
					
						
							|  |  |  |     PyObject *list; | 
					
						
							|  |  |  |     Py_ssize_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dict = PyThreadState_GetDict(); | 
					
						
							| 
									
										
										
										
											2014-03-31 22:04:38 +02:00
										 |  |  |     /* Ignore a missing thread-state, so that this function can be called
 | 
					
						
							|  |  |  |        early on startup. */ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (dict == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-02-25 17:59:46 +02:00
										 |  |  |     list = _PyDict_GetItemIdWithError(dict, &PyId_Py_Repr); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (list == NULL) { | 
					
						
							| 
									
										
										
										
											2019-02-25 17:59:46 +02:00
										 |  |  |         if (PyErr_Occurred()) { | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         list = PyList_New(0); | 
					
						
							|  |  |  |         if (list == NULL) | 
					
						
							|  |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2013-11-06 18:57:29 +01:00
										 |  |  |         if (_PyDict_SetItemId(dict, &PyId_Py_Repr, list) < 0) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |         Py_DECREF(list); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     i = PyList_GET_SIZE(list); | 
					
						
							|  |  |  |     while (--i >= 0) { | 
					
						
							|  |  |  |         if (PyList_GET_ITEM(list, i) == obj) | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-17 21:58:41 +02:00
										 |  |  |     if (PyList_Append(list, obj) < 0) | 
					
						
							|  |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											1998-04-10 22:32:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | Py_ReprLeave(PyObject *obj) | 
					
						
							| 
									
										
										
										
											1998-04-10 22:32:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyObject *dict; | 
					
						
							|  |  |  |     PyObject *list; | 
					
						
							|  |  |  |     Py_ssize_t i; | 
					
						
							| 
									
										
										
										
											2013-07-16 22:24:44 +02:00
										 |  |  |     PyObject *error_type, *error_value, *error_traceback; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     PyErr_Fetch(&error_type, &error_value, &error_traceback); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     dict = PyThreadState_GetDict(); | 
					
						
							|  |  |  |     if (dict == NULL) | 
					
						
							| 
									
										
										
										
											2013-07-16 22:24:44 +02:00
										 |  |  |         goto finally; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 17:59:46 +02:00
										 |  |  |     list = _PyDict_GetItemIdWithError(dict, &PyId_Py_Repr); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (list == NULL || !PyList_Check(list)) | 
					
						
							| 
									
										
										
										
											2013-07-16 22:24:44 +02:00
										 |  |  |         goto finally; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     i = PyList_GET_SIZE(list); | 
					
						
							|  |  |  |     /* Count backwards because we always expect obj to be list[-1] */ | 
					
						
							|  |  |  |     while (--i >= 0) { | 
					
						
							|  |  |  |         if (PyList_GET_ITEM(list, i) == obj) { | 
					
						
							|  |  |  |             PyList_SetSlice(list, i, i + 1, NULL); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-16 22:24:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | finally: | 
					
						
							|  |  |  |     /* ignore exceptions because there is no way to report them. */ | 
					
						
							|  |  |  |     PyErr_Restore(error_type, error_value, error_traceback); | 
					
						
							| 
									
										
										
										
											1998-04-10 22:32:46 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-07 05:13:56 +00:00
										 |  |  | /* Trashcan support. */ | 
					
						
							| 
									
										
										
										
											2000-04-24 15:40:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-07 05:13:56 +00:00
										 |  |  | /* Add op to the _PyTrash_delete_later list.  Called when the current
 | 
					
						
							|  |  |  |  * call-stack depth gets large.  op must be a currently untracked gc'ed | 
					
						
							|  |  |  |  * object, with refcount 0.  Py_DECREF must already have been called on it. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | _PyTrash_deposit_object(PyObject *op) | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-20 12:25:50 +01:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							|  |  |  |     struct _gc_runtime_state *gcstate = &tstate->interp->gc; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |     _PyObject_ASSERT(op, PyObject_IS_GC(op)); | 
					
						
							|  |  |  |     _PyObject_ASSERT(op, !_PyObject_GC_IS_TRACKED(op)); | 
					
						
							|  |  |  |     _PyObject_ASSERT(op, op->ob_refcnt == 0); | 
					
						
							| 
									
										
										
										
											2019-11-20 12:25:50 +01:00
										 |  |  |     _PyGCHead_SET_PREV(_Py_AS_GC(op), gcstate->trash_delete_later); | 
					
						
							|  |  |  |     gcstate->trash_delete_later = op; | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  | /* The equivalent API, using per-thread state recursion info */ | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | _PyTrash_thread_deposit_object(PyObject *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-01 01:51:40 +01:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |     _PyObject_ASSERT(op, PyObject_IS_GC(op)); | 
					
						
							|  |  |  |     _PyObject_ASSERT(op, !_PyObject_GC_IS_TRACKED(op)); | 
					
						
							|  |  |  |     _PyObject_ASSERT(op, op->ob_refcnt == 0); | 
					
						
							| 
									
										
										
										
											2018-07-10 17:19:53 +09:00
										 |  |  |     _PyGCHead_SET_PREV(_Py_AS_GC(op), tstate->trash_delete_later); | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  |     tstate->trash_delete_later = op; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-31 08:16:13 +10:00
										 |  |  | /* Deallocate all the objects in the _PyTrash_delete_later list.  Called when
 | 
					
						
							| 
									
										
										
										
											2002-07-07 05:13:56 +00:00
										 |  |  |  * the call-stack unwinds again. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-09 15:48:49 +00:00
										 |  |  | _PyTrash_destroy_chain(void) | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-20 12:25:50 +01:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							|  |  |  |     struct _gc_runtime_state *gcstate = &tstate->interp->gc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (gcstate->trash_delete_later) { | 
					
						
							|  |  |  |         PyObject *op = gcstate->trash_delete_later; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         destructor dealloc = Py_TYPE(op)->tp_dealloc; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-20 12:25:50 +01:00
										 |  |  |         gcstate->trash_delete_later = | 
					
						
							| 
									
										
										
										
											2018-07-10 17:19:53 +09:00
										 |  |  |             (PyObject*) _PyGCHead_PREV(_Py_AS_GC(op)); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Call the deallocator directly.  This used to try to
 | 
					
						
							|  |  |  |          * fool Py_DECREF into calling it indirectly, but | 
					
						
							|  |  |  |          * Py_DECREF was already called on this object, and in | 
					
						
							|  |  |  |          * assorted non-release builds calling Py_DECREF again ends | 
					
						
							|  |  |  |          * up distorting allocation statistics. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |         _PyObject_ASSERT(op, op->ob_refcnt == 0); | 
					
						
							| 
									
										
										
										
											2019-11-20 12:25:50 +01:00
										 |  |  |         ++gcstate->trash_delete_nesting; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         (*dealloc)(op); | 
					
						
							| 
									
										
										
										
											2019-11-20 12:25:50 +01:00
										 |  |  |         --gcstate->trash_delete_nesting; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  | /* The equivalent API, using per-thread state recursion info */ | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | _PyTrash_thread_destroy_chain(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-01 01:51:40 +01:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2017-05-13 13:36:14 +08:00
										 |  |  |     /* We need to increase trash_delete_nesting here, otherwise,
 | 
					
						
							|  |  |  |        _PyTrash_thread_destroy_chain will be called recursively | 
					
						
							|  |  |  |        and then possibly crash.  An example that may crash without | 
					
						
							|  |  |  |        increase: | 
					
						
							|  |  |  |            N = 500000  # need to be large enough | 
					
						
							|  |  |  |            ob = object() | 
					
						
							|  |  |  |            tups = [(ob,) for i in range(N)] | 
					
						
							|  |  |  |            for i in range(49): | 
					
						
							|  |  |  |                tups = [(tup,) for tup in tups] | 
					
						
							|  |  |  |            del tups | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     assert(tstate->trash_delete_nesting == 0); | 
					
						
							|  |  |  |     ++tstate->trash_delete_nesting; | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  |     while (tstate->trash_delete_later) { | 
					
						
							|  |  |  |         PyObject *op = tstate->trash_delete_later; | 
					
						
							|  |  |  |         destructor dealloc = Py_TYPE(op)->tp_dealloc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         tstate->trash_delete_later = | 
					
						
							| 
									
										
										
										
											2018-07-10 17:19:53 +09:00
										 |  |  |             (PyObject*) _PyGCHead_PREV(_Py_AS_GC(op)); | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Call the deallocator directly.  This used to try to
 | 
					
						
							|  |  |  |          * fool Py_DECREF into calling it indirectly, but | 
					
						
							|  |  |  |          * Py_DECREF was already called on this object, and in | 
					
						
							|  |  |  |          * assorted non-release builds calling Py_DECREF again ends | 
					
						
							|  |  |  |          * up distorting allocation statistics. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2018-10-26 17:16:37 +02:00
										 |  |  |         _PyObject_ASSERT(op, op->ob_refcnt == 0); | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  |         (*dealloc)(op); | 
					
						
							| 
									
										
										
										
											2017-05-13 13:36:14 +08:00
										 |  |  |         assert(tstate->trash_delete_nesting == 1); | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-05-13 13:36:14 +08:00
										 |  |  |     --tstate->trash_delete_nesting; | 
					
						
							| 
									
										
										
										
											2012-09-06 00:59:49 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2018-11-21 23:53:44 +01:00
										 |  |  | _PyObject_AssertFailed(PyObject *obj, const char *expr, const char *msg, | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |                        const char *file, int line, const char *function) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-21 23:53:44 +01:00
										 |  |  |     fprintf(stderr, "%s:%d: ", file, line); | 
					
						
							|  |  |  |     if (function) { | 
					
						
							|  |  |  |         fprintf(stderr, "%s: ", function); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |     fflush(stderr); | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-21 23:53:44 +01:00
										 |  |  |     if (expr) { | 
					
						
							|  |  |  |         fprintf(stderr, "Assertion \"%s\" failed", expr); | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2018-11-21 23:53:44 +01:00
										 |  |  |         fprintf(stderr, "Assertion failed"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fflush(stderr); | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-21 23:53:44 +01:00
										 |  |  |     if (msg) { | 
					
						
							|  |  |  |         fprintf(stderr, ": %s", msg); | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-11-21 23:53:44 +01:00
										 |  |  |     fprintf(stderr, "\n"); | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |     fflush(stderr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |     if (_PyObject_IsFreed(obj)) { | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |         /* It seems like the object memory has been freed:
 | 
					
						
							|  |  |  |            don't access it to prevent a segmentation fault. */ | 
					
						
							| 
									
										
										
										
											2019-09-17 23:36:28 +02:00
										 |  |  |         fprintf(stderr, "<object at %p is freed>\n", obj); | 
					
						
							| 
									
										
										
										
											2019-10-07 18:42:01 +02:00
										 |  |  |         fflush(stderr); | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2019-05-06 14:57:17 -04:00
										 |  |  |         /* Display the traceback where the object has been allocated.
 | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |            Do it before dumping repr(obj), since repr() is more likely | 
					
						
							|  |  |  |            to crash than dumping the traceback. */ | 
					
						
							|  |  |  |         void *ptr; | 
					
						
							|  |  |  |         PyTypeObject *type = Py_TYPE(obj); | 
					
						
							|  |  |  |         if (PyType_IS_GC(type)) { | 
					
						
							|  |  |  |             ptr = (void *)((char *)obj - sizeof(PyGC_Head)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             ptr = (void *)obj; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         _PyMem_DumpTraceback(fileno(stderr), ptr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* This might succeed or fail, but we're about to abort, so at least
 | 
					
						
							|  |  |  |            try to provide any extra info we can: */ | 
					
						
							|  |  |  |         _PyObject_Dump(obj); | 
					
						
							| 
									
										
										
										
											2019-10-07 23:44:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         fprintf(stderr, "\n"); | 
					
						
							|  |  |  |         fflush(stderr); | 
					
						
							| 
									
										
										
										
											2018-10-25 17:31:10 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Py_FatalError("_PyObject_AssertFailed"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-30 14:48:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-03 20:14:31 +00:00
										 |  |  | #undef _Py_Dealloc
 | 
					
						
							| 
									
										
										
										
											2018-10-30 14:48:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-03 20:14:31 +00:00
										 |  |  | void | 
					
						
							|  |  |  | _Py_Dealloc(PyObject *op) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-10-30 14:48:26 +01:00
										 |  |  |     destructor dealloc = Py_TYPE(op)->tp_dealloc; | 
					
						
							|  |  |  | #ifdef Py_TRACE_REFS
 | 
					
						
							|  |  |  |     _Py_ForgetReference(op); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     _Py_INC_TPFREES(op); | 
					
						
							| 
									
										
										
										
											2010-12-03 20:14:31 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-10-30 14:48:26 +01:00
										 |  |  |     (*dealloc)(op); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-12-03 20:14:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 10:40:58 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 |