| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:07:38 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | 
					
						
							|  |  |  | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
					
						
							|  |  |  | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | 
					
						
							|  |  |  | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
					
						
							|  |  |  | PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Class object implementation */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | #include "structmember.h"
 | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | /* Forward */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject *class_lookup | 
					
						
							|  |  |  | 	Py_PROTO((PyClassObject *, PyObject *, PyClassObject **)); | 
					
						
							|  |  |  | static PyObject *instance_getattr1 Py_PROTO((PyInstanceObject *, PyObject *)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | static PyObject *getattrstr, *setattrstr, *delattrstr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyClass_New(bases, dict, name) | 
					
						
							|  |  |  | 	PyObject *bases; /* NULL or tuple of classobjects! */ | 
					
						
							|  |  |  | 	PyObject *dict; | 
					
						
							| 
									
										
										
										
											1997-10-07 14:54:11 +00:00
										 |  |  | 	PyObject *name; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyClassObject *op, *dummy; | 
					
						
							| 
									
										
										
										
											1997-09-12 20:04:46 +00:00
										 |  |  | 	static PyObject *docstr, *modstr, *namestr; | 
					
						
							| 
									
										
										
										
											1996-08-21 14:54:28 +00:00
										 |  |  | 	if (docstr == NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		docstr= PyString_InternFromString("__doc__"); | 
					
						
							| 
									
										
										
										
											1996-08-21 14:54:28 +00:00
										 |  |  | 		if (docstr == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-09-12 20:04:46 +00:00
										 |  |  | 	if (modstr == NULL) { | 
					
						
							|  |  |  | 		modstr= PyString_InternFromString("__module__"); | 
					
						
							|  |  |  | 		if (modstr == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (namestr == NULL) { | 
					
						
							|  |  |  | 		namestr= PyString_InternFromString("__name__"); | 
					
						
							|  |  |  | 		if (namestr == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-10-07 14:54:11 +00:00
										 |  |  | 	if (name == NULL || !PyString_Check(name)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 				"PyClass_New: name must be a string"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (dict == NULL || !PyDict_Check(dict)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 				"PyClass_New: dict must be a dictionary"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (PyDict_GetItem(dict, docstr) == NULL) { | 
					
						
							|  |  |  | 		if (PyDict_SetItem(dict, docstr, Py_None) < 0) | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-09-12 20:04:46 +00:00
										 |  |  | 	if (PyDict_GetItem(dict, modstr) == NULL) { | 
					
						
							|  |  |  | 		PyObject *globals = PyEval_GetGlobals(); | 
					
						
							|  |  |  | 		if (globals != NULL) { | 
					
						
							| 
									
										
										
										
											1997-10-07 14:54:11 +00:00
										 |  |  | 			PyObject *modname = PyDict_GetItem(globals, namestr); | 
					
						
							|  |  |  | 			if (modname != NULL) { | 
					
						
							|  |  |  | 				if (PyDict_SetItem(dict, modstr, modname) < 0) | 
					
						
							| 
									
										
										
										
											1997-09-12 20:04:46 +00:00
										 |  |  | 					return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1991-12-10 13:53:23 +00:00
										 |  |  | 	if (bases == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		bases = PyTuple_New(0); | 
					
						
							| 
									
										
										
										
											1991-12-10 13:53:23 +00:00
										 |  |  | 		if (bases == NULL) | 
					
						
							| 
									
										
										
										
											1993-03-16 12:15:04 +00:00
										 |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											1991-12-10 13:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-10-07 14:54:11 +00:00
										 |  |  | 	else { | 
					
						
							|  |  |  | 		int i; | 
					
						
							|  |  |  | 		if (!PyTuple_Check(bases)) { | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 					"PyClass_New: bases must be a tuple"); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		i = PyTuple_Size(bases); | 
					
						
							|  |  |  | 		while (--i >= 0) { | 
					
						
							|  |  |  | 			if (!PyClass_Check(PyTuple_GetItem(bases, i))) { | 
					
						
							|  |  |  | 				PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 					"PyClass_New: base must be a class"); | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_INCREF(bases); | 
					
						
							| 
									
										
										
										
											1997-10-07 14:54:11 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	op = PyObject_NEW(PyClassObject, &PyClass_Type); | 
					
						
							| 
									
										
										
										
											1991-12-10 13:53:23 +00:00
										 |  |  | 	if (op == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(bases); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1991-12-10 13:53:23 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	op->cl_bases = bases; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_INCREF(dict); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	op->cl_dict = dict; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_XINCREF(name); | 
					
						
							| 
									
										
										
										
											1991-10-20 20:11:48 +00:00
										 |  |  | 	op->cl_name = name; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (getattrstr == NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		getattrstr = PyString_InternFromString("__getattr__"); | 
					
						
							|  |  |  | 		setattrstr = PyString_InternFromString("__setattr__"); | 
					
						
							|  |  |  | 		delattrstr = PyString_InternFromString("__delattr__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	op->cl_getattr = class_lookup(op, getattrstr, &dummy); | 
					
						
							|  |  |  | 	op->cl_setattr = class_lookup(op, setattrstr, &dummy); | 
					
						
							|  |  |  | 	op->cl_delattr = class_lookup(op, delattrstr, &dummy); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_XINCREF(op->cl_getattr); | 
					
						
							|  |  |  | 	Py_XINCREF(op->cl_setattr); | 
					
						
							|  |  |  | 	Py_XINCREF(op->cl_delattr); | 
					
						
							|  |  |  | 	return (PyObject *) op; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Class methods */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | class_dealloc(op) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyClassObject *op; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(op->cl_bases); | 
					
						
							|  |  |  | 	Py_DECREF(op->cl_dict); | 
					
						
							|  |  |  | 	Py_XDECREF(op->cl_name); | 
					
						
							| 
									
										
										
										
											1998-08-04 14:59:16 +00:00
										 |  |  | 	Py_XDECREF(op->cl_getattr); | 
					
						
							|  |  |  | 	Py_XDECREF(op->cl_setattr); | 
					
						
							|  |  |  | 	Py_XDECREF(op->cl_delattr); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	free((ANY *)op); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | class_lookup(cp, name, pclass) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyClassObject *cp; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							|  |  |  | 	PyClassObject **pclass; | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i, n; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *value = PyDict_GetItem(cp->cl_dict, name); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	if (value != NULL) { | 
					
						
							|  |  |  | 		*pclass = cp; | 
					
						
							|  |  |  | 		return value; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	n = PyTuple_Size(cp->cl_bases); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	for (i = 0; i < n; i++) { | 
					
						
							| 
									
										
										
										
											1997-09-12 20:04:46 +00:00
										 |  |  | 		/* XXX What if one of the bases is not a class? */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyObject *v = class_lookup( | 
					
						
							|  |  |  | 			(PyClassObject *) | 
					
						
							|  |  |  | 			PyTuple_GetItem(cp->cl_bases, i), name, pclass); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 		if (v != NULL) | 
					
						
							|  |  |  | 			return v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | class_getattr(op, name) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyClassObject *op; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyObject *v; | 
					
						
							|  |  |  | 	register char *sname = PyString_AsString(name); | 
					
						
							|  |  |  | 	PyClassObject *class; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (sname[0] == '_' && sname[1] == '_') { | 
					
						
							|  |  |  | 		if (strcmp(sname, "__dict__") == 0) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			if (PyEval_GetRestricted()) { | 
					
						
							|  |  |  | 				PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  | 			   "class.__dict__ not accessible in restricted mode"); | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_INCREF(op->cl_dict); | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 			return op->cl_dict; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (strcmp(sname, "__bases__") == 0) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_INCREF(op->cl_bases); | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 			return op->cl_bases; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (strcmp(sname, "__name__") == 0) { | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 			if (op->cl_name == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 				v = Py_None; | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 			else | 
					
						
							|  |  |  | 				v = op->cl_name; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_INCREF(v); | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 			return v; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1991-10-20 20:11:48 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	v = class_lookup(op, name, &class); | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 	if (v == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_SetObject(PyExc_AttributeError, name); | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-09 01:07:15 +00:00
										 |  |  | 	Py_INCREF(v); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (PyFunction_Check(v)) { | 
					
						
							|  |  |  | 		PyObject *w = PyMethod_New(v, (PyObject *)NULL, | 
					
						
							|  |  |  | 						    (PyObject *)class); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 		v = w; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | set_slot(slot, v) | 
					
						
							|  |  |  | 	PyObject **slot; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *temp = *slot; | 
					
						
							|  |  |  | 	Py_XINCREF(v); | 
					
						
							|  |  |  | 	*slot = v; | 
					
						
							|  |  |  | 	Py_XDECREF(temp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-08 13:34:48 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | set_attr_slots(c) | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | 	PyClassObject *c; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyClassObject *dummy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_slot(&c->cl_getattr, class_lookup(c, getattrstr, &dummy)); | 
					
						
							|  |  |  | 	set_slot(&c->cl_setattr, class_lookup(c, setattrstr, &dummy)); | 
					
						
							|  |  |  | 	set_slot(&c->cl_delattr, class_lookup(c, delattrstr, &dummy)); | 
					
						
							| 
									
										
										
										
											1998-07-08 13:34:48 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-08 13:34:48 +00:00
										 |  |  | static char * | 
					
						
							|  |  |  | set_dict(c, v) | 
					
						
							|  |  |  | 	PyClassObject *c; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (v == NULL || !PyDict_Check(v)) | 
					
						
							|  |  |  | 		return "__dict__ must be a dictionary object"; | 
					
						
							|  |  |  | 	set_slot(&c->cl_dict, v); | 
					
						
							|  |  |  | 	set_attr_slots(c); | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | 	return ""; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char * | 
					
						
							|  |  |  | set_bases(c, v) | 
					
						
							|  |  |  | 	PyClassObject *c; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i, n; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (v == NULL || !PyTuple_Check(v)) | 
					
						
							|  |  |  | 		return "__bases__ must be a tuple object"; | 
					
						
							|  |  |  | 	n = PyTuple_Size(v); | 
					
						
							|  |  |  | 	for (i = 0; i < n; i++) { | 
					
						
							|  |  |  | 		PyObject *x = PyTuple_GET_ITEM(v, i); | 
					
						
							|  |  |  | 		if (!PyClass_Check(x)) | 
					
						
							|  |  |  | 			return "__bases__ items must be classes"; | 
					
						
							|  |  |  | 		if (PyClass_IsSubclass(x, (PyObject *)c)) | 
					
						
							|  |  |  | 			return "a __bases__ item causes an inheritance cycle"; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	set_slot(&c->cl_bases, v); | 
					
						
							| 
									
										
										
										
											1998-07-08 13:34:48 +00:00
										 |  |  | 	set_attr_slots(c); | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | 	return ""; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char * | 
					
						
							|  |  |  | set_name(c, v) | 
					
						
							|  |  |  | 	PyClassObject *c; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (v == NULL || !PyString_Check(v)) | 
					
						
							|  |  |  | 		return "__name__ must be a string object"; | 
					
						
							| 
									
										
										
										
											1998-06-12 15:03:58 +00:00
										 |  |  | 	if ((long)strlen(PyString_AS_STRING(v)) != PyString_GET_SIZE(v)) | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | 		return "__name__ must not contain null bytes"; | 
					
						
							|  |  |  | 	set_slot(&c->cl_name, v); | 
					
						
							|  |  |  | 	return ""; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-10-20 20:11:48 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | class_setattr(op, name, v) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyClassObject *op; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1991-10-20 20:11:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-25 21:23:56 +00:00
										 |  |  | 	char *sname; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (PyEval_GetRestricted()) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_RuntimeError, | 
					
						
							| 
									
										
										
										
											1995-08-04 04:05:31 +00:00
										 |  |  | 			   "classes are read-only in restricted mode"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-25 21:23:56 +00:00
										 |  |  | 	sname = PyString_AsString(name); | 
					
						
							|  |  |  | 	if (sname[0] == '_' && sname[1] == '_') { | 
					
						
							|  |  |  | 		int n = PyString_Size(name); | 
					
						
							|  |  |  | 		if (sname[n-1] == '_' && sname[n-2] == '_') { | 
					
						
							| 
									
										
										
										
											1998-05-29 21:37:21 +00:00
										 |  |  | 			char *err = NULL; | 
					
						
							|  |  |  | 			if (strcmp(sname, "__dict__") == 0) | 
					
						
							|  |  |  | 				err = set_dict(op, v); | 
					
						
							|  |  |  | 			else if (strcmp(sname, "__bases__") == 0) | 
					
						
							|  |  |  | 				err = set_bases(op, v); | 
					
						
							|  |  |  | 			else if (strcmp(sname, "__name__") == 0) | 
					
						
							|  |  |  | 				err = set_name(op, v); | 
					
						
							|  |  |  | 			else if (strcmp(sname, "__getattr__") == 0) | 
					
						
							|  |  |  | 				set_slot(&op->cl_getattr, v); | 
					
						
							|  |  |  | 			else if (strcmp(sname, "__setattr__") == 0) | 
					
						
							|  |  |  | 				set_slot(&op->cl_setattr, v); | 
					
						
							|  |  |  | 			else if (strcmp(sname, "__delattr__") == 0) | 
					
						
							|  |  |  | 				set_slot(&op->cl_delattr, v); | 
					
						
							|  |  |  | 			/* For the last three, we fall through to update the
 | 
					
						
							|  |  |  | 			   dictionary as well. */ | 
					
						
							|  |  |  | 			if (err != NULL) { | 
					
						
							|  |  |  | 				if (*err == '\0') | 
					
						
							|  |  |  | 					return 0; | 
					
						
							|  |  |  | 				PyErr_SetString(PyExc_TypeError, err); | 
					
						
							| 
									
										
										
										
											1997-08-25 21:23:56 +00:00
										 |  |  | 				return -1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 	if (v == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		int rv = PyDict_DelItem(op->cl_dict, name); | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 		if (rv < 0) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			PyErr_SetString(PyExc_AttributeError, | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 				   "delete non-existing class attribute"); | 
					
						
							|  |  |  | 		return rv; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1991-10-20 20:11:48 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		return PyDict_SetItem(op->cl_dict, name, v); | 
					
						
							| 
									
										
										
										
											1991-10-20 20:11:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | class_repr(op) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyClassObject *op; | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-10-20 23:26:11 +00:00
										 |  |  | 	PyObject *mod = PyDict_GetItemString(op->cl_dict, "__module__"); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 	char buf[140]; | 
					
						
							|  |  |  | 	char *name; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (op->cl_name == NULL || !PyString_Check(op->cl_name)) | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 		name = "?"; | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		name = PyString_AsString(op->cl_name); | 
					
						
							| 
									
										
										
										
											1997-10-20 23:26:11 +00:00
										 |  |  | 	if (mod == NULL || !PyString_Check(mod)) | 
					
						
							|  |  |  | 		sprintf(buf, "<class ?.%.100s at %lx>", name, (long)op); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		sprintf(buf, "<class %.50s.%.50s at %lx>", | 
					
						
							|  |  |  | 			PyString_AsString(mod), | 
					
						
							|  |  |  | 			name, (long)op); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return PyString_FromString(buf); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-10-20 23:26:11 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | class_str(op) | 
					
						
							|  |  |  | 	PyClassObject *op; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *mod = PyDict_GetItemString(op->cl_dict, "__module__"); | 
					
						
							|  |  |  | 	PyObject *name = op->cl_name; | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							|  |  |  | 	int m, n; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (name == NULL || !PyString_Check(name)) | 
					
						
							|  |  |  | 		return class_repr(op); | 
					
						
							|  |  |  | 	if (mod == NULL || !PyString_Check(mod)) { | 
					
						
							|  |  |  | 		Py_INCREF(name); | 
					
						
							|  |  |  | 		return name; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m = PyString_Size(mod); | 
					
						
							|  |  |  | 	n = PyString_Size(name); | 
					
						
							|  |  |  | 	res = PyString_FromStringAndSize((char *)NULL, m+1+n); | 
					
						
							|  |  |  | 	if (res != NULL) { | 
					
						
							|  |  |  | 		char *s = PyString_AsString(res); | 
					
						
							|  |  |  | 		memcpy(s, PyString_AsString(mod), m); | 
					
						
							|  |  |  | 		s += m; | 
					
						
							|  |  |  | 		*s++ = '.'; | 
					
						
							|  |  |  | 		memcpy(s, PyString_AsString(name), n); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyTypeObject PyClass_Type = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0, | 
					
						
							|  |  |  | 	"class", | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	sizeof(PyClassObject), | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(destructor)class_dealloc, /*tp_dealloc*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,		/*tp_print*/ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	0,		/*tp_getattr*/ | 
					
						
							|  |  |  | 	0,		/*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,		/*tp_compare*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(reprfunc)class_repr, /*tp_repr*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,		/*tp_as_number*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_sequence*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_mapping*/ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	0,		/*tp_hash*/ | 
					
						
							|  |  |  | 	0,		/*tp_call*/ | 
					
						
							| 
									
										
										
										
											1997-10-20 23:26:11 +00:00
										 |  |  | 	(reprfunc)class_str, /*tp_str*/ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	(getattrofunc)class_getattr, /*tp_getattro*/ | 
					
						
							|  |  |  | 	(setattrofunc)class_setattr, /*tp_setattro*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyClass_IsSubclass(class, base) | 
					
						
							|  |  |  | 	PyObject *class; | 
					
						
							|  |  |  | 	PyObject *base; | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i, n; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyClassObject *cp; | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	if (class == base) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (class == NULL || !PyClass_Check(class)) | 
					
						
							| 
									
										
										
										
											1993-05-25 09:38:27 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	cp = (PyClassObject *)class; | 
					
						
							|  |  |  | 	n = PyTuple_Size(cp->cl_bases); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	for (i = 0; i < n; i++) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		if (PyClass_IsSubclass(PyTuple_GetItem(cp->cl_bases, i), base)) | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 			return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | /* Instance objects */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyInstance_New(class, arg, kw) | 
					
						
							|  |  |  | 	PyObject *class; | 
					
						
							|  |  |  | 	PyObject *arg; | 
					
						
							|  |  |  | 	PyObject *kw; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyInstanceObject *inst; | 
					
						
							|  |  |  | 	PyObject *init; | 
					
						
							|  |  |  | 	static PyObject *initstr; | 
					
						
							|  |  |  | 	if (!PyClass_Check(class)) { | 
					
						
							|  |  |  | 		PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | 	if (inst == NULL) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_INCREF(class); | 
					
						
							|  |  |  | 	inst->in_class = (PyClassObject *)class; | 
					
						
							|  |  |  | 	inst->in_dict = PyDict_New(); | 
					
						
							| 
									
										
										
										
											1997-05-09 01:07:15 +00:00
										 |  |  | 	if (inst->in_dict == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(inst); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (initstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		initstr = PyString_InternFromString("__init__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	init = instance_getattr1(inst, initstr); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 	if (init == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							|  |  |  | 		if ((arg != NULL && (!PyTuple_Check(arg) || | 
					
						
							|  |  |  | 				     PyTuple_Size(arg) != 0)) | 
					
						
							|  |  |  | 		    || (kw != NULL && (!PyDict_Check(kw) || | 
					
						
							|  |  |  | 				      PyDict_Size(kw) != 0))) { | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											1995-07-26 18:07:32 +00:00
										 |  |  | 				   "this constructor takes no arguments"); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_DECREF(inst); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 			inst = NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyObject *res = PyEval_CallObjectWithKeywords(init, arg, kw); | 
					
						
							|  |  |  | 		Py_DECREF(init); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 		if (res == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_DECREF(inst); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 			inst = NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			if (res != Py_None) { | 
					
						
							|  |  |  | 				PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 					   "__init__() should return None"); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 				Py_DECREF(inst); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 				inst = NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return (PyObject *)inst; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-04-04 10:42:10 +00:00
										 |  |  | /* Instance methods */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | instance_dealloc(inst) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *error_type, *error_value, *error_traceback; | 
					
						
							|  |  |  | 	PyObject *del; | 
					
						
							|  |  |  | 	static PyObject *delstr; | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 	/* Call the __del__ method if it exists.  First temporarily
 | 
					
						
							|  |  |  | 	   revive the object and save the current exception, if any. */ | 
					
						
							| 
									
										
										
										
											1996-05-23 22:46:51 +00:00
										 |  |  | #ifdef Py_TRACE_REFS
 | 
					
						
							|  |  |  | 	/* much too complicated if Py_TRACE_REFS defined */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	extern long _Py_RefTotal; | 
					
						
							|  |  |  | 	inst->ob_type = &PyInstance_Type; | 
					
						
							|  |  |  | 	_Py_NewReference(inst); | 
					
						
							|  |  |  | 	_Py_RefTotal--;		/* compensate for increment in NEWREF */ | 
					
						
							| 
									
										
										
										
											1995-08-28 09:00:43 +00:00
										 |  |  | #ifdef COUNT_ALLOCS
 | 
					
						
							|  |  |  | 	inst->ob_type->tp_alloc--; /* ditto */ | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1996-05-23 22:46:51 +00:00
										 |  |  | #else /* !Py_TRACE_REFS */
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_INCREF(inst); | 
					
						
							| 
									
										
										
										
											1996-05-23 22:46:51 +00:00
										 |  |  | #endif /* !Py_TRACE_REFS */
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyErr_Fetch(&error_type, &error_value, &error_traceback); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (delstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		delstr = PyString_InternFromString("__del__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if ((del = instance_getattr1(inst, delstr)) != NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyObject *res = PyEval_CallObject(del, (PyObject *)NULL); | 
					
						
							| 
									
										
										
										
											1996-08-12 22:00:53 +00:00
										 |  |  | 		if (res == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			PyObject *f, *t, *v, *tb; | 
					
						
							|  |  |  |  			PyErr_Fetch(&t, &v, &tb); | 
					
						
							|  |  |  | 			f = PySys_GetObject("stderr"); | 
					
						
							| 
									
										
										
										
											1996-09-11 22:51:57 +00:00
										 |  |  | 			if (f != NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 				PyFile_WriteString("Exception ", f); | 
					
						
							| 
									
										
										
										
											1996-12-05 21:52:32 +00:00
										 |  |  | 				if (t) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 					PyFile_WriteObject(t, f, Py_PRINT_RAW); | 
					
						
							|  |  |  | 					if (v && v != Py_None) { | 
					
						
							|  |  |  | 						PyFile_WriteString(": ", f); | 
					
						
							|  |  |  | 						PyFile_WriteObject(v, f, 0); | 
					
						
							| 
									
										
										
										
											1996-12-05 21:52:32 +00:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 				PyFile_WriteString(" in ", f); | 
					
						
							|  |  |  | 				PyFile_WriteObject(del, f, 0); | 
					
						
							|  |  |  | 				PyFile_WriteString(" ignored\n", f); | 
					
						
							|  |  |  | 				PyErr_Clear(); /* Just in case */ | 
					
						
							| 
									
										
										
										
											1996-09-11 22:51:57 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											1996-12-05 21:52:32 +00:00
										 |  |  | 			Py_XDECREF(t); | 
					
						
							|  |  |  | 			Py_XDECREF(v); | 
					
						
							|  |  |  | 			Py_XDECREF(tb); | 
					
						
							| 
									
										
										
										
											1996-08-12 22:00:53 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_DECREF(res); | 
					
						
							|  |  |  | 		Py_DECREF(del); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	/* Restore the saved exception and undo the temporary revival */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyErr_Restore(error_type, error_value, error_traceback); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 	/* Can't use DECREF here, it would cause a recursive call */ | 
					
						
							| 
									
										
										
										
											1995-08-28 09:00:43 +00:00
										 |  |  | 	if (--inst->ob_refcnt > 0) { | 
					
						
							|  |  |  | #ifdef COUNT_ALLOCS
 | 
					
						
							|  |  |  | 		inst->ob_type->tp_free--; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 		return; /* __del__ added a reference; don't delete now */ | 
					
						
							| 
									
										
										
										
											1995-08-28 09:00:43 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-05-23 22:46:51 +00:00
										 |  |  | #ifdef Py_TRACE_REFS
 | 
					
						
							| 
									
										
										
										
											1995-08-28 09:00:43 +00:00
										 |  |  | #ifdef COUNT_ALLOCS
 | 
					
						
							|  |  |  | 	inst->ob_type->tp_free--;	/* compensate for increment in UNREF */ | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	_Py_ForgetReference(inst); | 
					
						
							| 
									
										
										
										
											1995-08-28 09:00:43 +00:00
										 |  |  | 	inst->ob_type = NULL; | 
					
						
							| 
									
										
										
										
											1996-05-23 22:46:51 +00:00
										 |  |  | #endif /* Py_TRACE_REFS */
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(inst->in_class); | 
					
						
							|  |  |  | 	Py_XDECREF(inst->in_dict); | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | 	free((ANY *)inst); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | instance_getattr1(inst, name) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyInstanceObject *inst; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyObject *v; | 
					
						
							|  |  |  | 	register char *sname = PyString_AsString(name); | 
					
						
							|  |  |  | 	PyClassObject *class; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (sname[0] == '_' && sname[1] == '_') { | 
					
						
							|  |  |  | 		if (strcmp(sname, "__dict__") == 0) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			if (PyEval_GetRestricted()) { | 
					
						
							|  |  |  | 				PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  | 			"instance.__dict__ not accessible in restricted mode"); | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_INCREF(inst->in_dict); | 
					
						
							| 
									
										
										
										
											1993-10-22 12:04:32 +00:00
										 |  |  | 			return inst->in_dict; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (strcmp(sname, "__class__") == 0) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			Py_INCREF(inst->in_class); | 
					
						
							|  |  |  | 			return (PyObject *)inst->in_class; | 
					
						
							| 
									
										
										
										
											1993-10-22 12:04:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											1991-10-20 20:11:48 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1993-05-25 09:38:27 +00:00
										 |  |  | 	class = NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	v = PyDict_GetItem(inst->in_dict, name); | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 	if (v == NULL) { | 
					
						
							|  |  |  | 		v = class_lookup(inst->in_class, name, &class); | 
					
						
							|  |  |  | 		if (v == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			PyErr_SetObject(PyExc_AttributeError, name); | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-09 01:07:15 +00:00
										 |  |  | 	Py_INCREF(v); | 
					
						
							| 
									
										
										
										
											1993-10-15 13:01:11 +00:00
										 |  |  | 	if (class != NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		if (PyFunction_Check(v)) { | 
					
						
							|  |  |  | 			PyObject *w = PyMethod_New(v, (PyObject *)inst, | 
					
						
							|  |  |  | 							    (PyObject *)class); | 
					
						
							|  |  |  | 			Py_DECREF(v); | 
					
						
							| 
									
										
										
										
											1993-10-15 13:01:11 +00:00
										 |  |  | 			v = w; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		else if (PyMethod_Check(v)) { | 
					
						
							|  |  |  | 			PyObject *im_class = PyMethod_Class(v); | 
					
						
							| 
									
										
										
										
											1993-10-15 13:01:11 +00:00
										 |  |  | 			/* Only if classes are compatible */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			if (PyClass_IsSubclass((PyObject *)class, im_class)) { | 
					
						
							|  |  |  | 				PyObject *im_func = PyMethod_Function(v); | 
					
						
							|  |  |  | 				PyObject *w = PyMethod_New(im_func, | 
					
						
							|  |  |  | 						(PyObject *)inst, im_class); | 
					
						
							|  |  |  | 				Py_DECREF(v); | 
					
						
							| 
									
										
										
										
											1993-10-15 13:01:11 +00:00
										 |  |  | 				v = w; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1993-05-21 19:56:10 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return v; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | instance_getattr(inst, name) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyInstanceObject *inst; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyObject *func, *res; | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | 	res = instance_getattr1(inst, name); | 
					
						
							|  |  |  | 	if (res == NULL && (func = inst->in_class->cl_getattr) != NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyObject *args; | 
					
						
							|  |  |  | 		PyErr_Clear(); | 
					
						
							|  |  |  | 		args = Py_BuildValue("(OO)", inst, name); | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | 		if (args == NULL) | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		res = PyEval_CallObject(func, args); | 
					
						
							|  |  |  | 		Py_DECREF(args); | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | instance_setattr1(inst, name, v) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 	if (v == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		int rv = PyDict_DelItem(inst->in_dict, name); | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 		if (rv < 0) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			PyErr_SetString(PyExc_AttributeError, | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 				   "delete non-existing instance attribute"); | 
					
						
							|  |  |  | 		return rv; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		return PyDict_SetItem(inst->in_dict, name, v); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | instance_setattr(inst, name, v) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-25 21:23:56 +00:00
										 |  |  | 	PyObject *func, *args, *res, *tmp; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	char *sname = PyString_AsString(name); | 
					
						
							| 
									
										
										
										
											1997-08-25 21:23:56 +00:00
										 |  |  | 	if (sname[0] == '_' && sname[1] == '_') { | 
					
						
							|  |  |  | 		int n = PyString_Size(name); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (sname[n-1] == '_' && sname[n-2] == '_') { | 
					
						
							| 
									
										
										
										
											1997-08-25 21:23:56 +00:00
										 |  |  | 			if (strcmp(sname, "__dict__") == 0) { | 
					
						
							|  |  |  | 				if (PyEval_GetRestricted()) { | 
					
						
							|  |  |  | 					PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  | 				 "__dict__ not accessible in restricted mode"); | 
					
						
							|  |  |  | 					return -1; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (v == NULL || !PyDict_Check(v)) { | 
					
						
							|  |  |  | 				    PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				       "__dict__ must be set to a dictionary"); | 
					
						
							|  |  |  | 				    return -1; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				tmp = inst->in_dict; | 
					
						
							|  |  |  | 				Py_INCREF(v); | 
					
						
							|  |  |  | 				inst->in_dict = v; | 
					
						
							|  |  |  | 				Py_DECREF(tmp); | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if (strcmp(sname, "__class__") == 0) { | 
					
						
							|  |  |  | 				if (PyEval_GetRestricted()) { | 
					
						
							|  |  |  | 					PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  | 				"__class__ not accessible in restricted mode"); | 
					
						
							|  |  |  | 					return -1; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if (v == NULL || !PyClass_Check(v)) { | 
					
						
							|  |  |  | 					PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 					   "__class__ must be set to a class"); | 
					
						
							|  |  |  | 					return -1; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				tmp = (PyObject *)(inst->in_class); | 
					
						
							|  |  |  | 				Py_INCREF(v); | 
					
						
							|  |  |  | 				inst->in_class = (PyClassObject *)v; | 
					
						
							|  |  |  | 				Py_DECREF(tmp); | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | 	if (v == NULL) | 
					
						
							|  |  |  | 		func = inst->in_class->cl_delattr; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		func = inst->in_class->cl_setattr; | 
					
						
							|  |  |  | 	if (func == NULL) | 
					
						
							|  |  |  | 		return instance_setattr1(inst, name, v); | 
					
						
							|  |  |  | 	if (v == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		args = Py_BuildValue("(OO)", inst, name); | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		args = Py_BuildValue("(OOO)", inst, name, v); | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | 	if (args == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, args); | 
					
						
							|  |  |  | 	Py_DECREF(args); | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | 	if (res == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1994-09-05 07:31:41 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_repr(inst) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							|  |  |  | 	static PyObject *reprstr; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (reprstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		reprstr = PyString_InternFromString("__repr__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	func = instance_getattr(inst, reprstr); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) { | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 		char buf[140]; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyObject *classname = inst->in_class->cl_name; | 
					
						
							| 
									
										
										
										
											1997-12-03 00:06:02 +00:00
										 |  |  | 		PyObject *mod = PyDict_GetItemString( | 
					
						
							|  |  |  | 			inst->in_class->cl_dict, "__module__"); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 		char *cname; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		if (classname != NULL && PyString_Check(classname)) | 
					
						
							|  |  |  | 			cname = PyString_AsString(classname); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			cname = "?"; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1997-12-03 00:06:02 +00:00
										 |  |  | 		if (mod == NULL || !PyString_Check(mod)) | 
					
						
							|  |  |  | 			sprintf(buf, "<?.%.100s instance at %lx>", | 
					
						
							|  |  |  | 				cname, (long)inst); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			sprintf(buf, "<%.50s.%.50s instance at %lx>", | 
					
						
							|  |  |  | 				PyString_AsString(mod), | 
					
						
							|  |  |  | 				cname, (long)inst); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		return PyString_FromString(buf); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, (PyObject *)NULL); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | instance_compare1(inst, other) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *inst, *other; | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return PyInstance_DoBinOp(inst, other, "__cmp__", "__rcmp__", | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 			     instance_compare1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_compare(inst, other) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *inst, *other; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *result; | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 	long outcome; | 
					
						
							|  |  |  | 	result = instance_compare1(inst, other); | 
					
						
							| 
									
										
										
										
											1997-05-23 00:06:51 +00:00
										 |  |  | 	if (result == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	if (!PyInt_Check(result)) { | 
					
						
							|  |  |  | 		Py_DECREF(result); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"comparison did not return an int"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1994-10-19 15:11:52 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	outcome = PyInt_AsLong(result); | 
					
						
							|  |  |  | 	Py_DECREF(result); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	if (outcome < 0) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	else if (outcome > 0) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | static long | 
					
						
							|  |  |  | instance_hash(inst) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							| 
									
										
										
										
											1993-04-08 12:56:19 +00:00
										 |  |  | 	long outcome; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	static PyObject *hashstr, *cmpstr; | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (hashstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		hashstr = PyString_InternFromString("__hash__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	func = instance_getattr(inst, hashstr); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	if (func == NULL) { | 
					
						
							|  |  |  | 		/* If there is no __cmp__ method, we hash on the address.
 | 
					
						
							|  |  |  | 		   If a __cmp__ method exists, there must be a __hash__. */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (cmpstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 			cmpstr = PyString_InternFromString("__cmp__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		func = instance_getattr(inst, cmpstr); | 
					
						
							| 
									
										
										
										
											1993-04-08 12:56:19 +00:00
										 |  |  | 		if (func == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1993-04-08 12:56:19 +00:00
										 |  |  | 			outcome = (long)inst; | 
					
						
							|  |  |  | 			if (outcome == -1) | 
					
						
							|  |  |  | 				outcome = -2; | 
					
						
							|  |  |  | 			return outcome; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_SetString(PyExc_TypeError, "unhashable instance"); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, (PyObject *)NULL); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	if (res == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (PyInt_Check(res)) { | 
					
						
							|  |  |  | 		outcome = PyInt_AsLong(res); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 		if (outcome == -1) | 
					
						
							|  |  |  | 			outcome = -2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"__hash__() should return an int"); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 		outcome = -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	return outcome; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject *getitemstr, *setitemstr, *delitemstr, *lenstr; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_length(inst) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	int outcome; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (lenstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		lenstr = PyString_InternFromString("__len__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	func = instance_getattr(inst, lenstr); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, (PyObject *)NULL); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-11-26 10:30:26 +00:00
										 |  |  | 	if (res == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (PyInt_Check(res)) { | 
					
						
							|  |  |  | 		outcome = PyInt_AsLong(res); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 		if (outcome < 0) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 					"__len__() should return >= 0"); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"__len__() should return an int"); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 		outcome = -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return outcome; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_subscript(inst, key) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							|  |  |  | 	PyObject *key; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *arg; | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (getitemstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		getitemstr = PyString_InternFromString("__getitem__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	func = instance_getattr(inst, getitemstr); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	arg = Py_BuildValue("(O)", key); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (arg == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_ass_subscript(inst, key, value) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject*inst; | 
					
						
							|  |  |  | 	PyObject *key; | 
					
						
							|  |  |  | 	PyObject *value; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *arg; | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (value == NULL) { | 
					
						
							|  |  |  | 		if (delitemstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 			delitemstr = PyString_InternFromString("__delitem__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		func = instance_getattr(inst, delitemstr); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		if (setitemstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 			setitemstr = PyString_InternFromString("__setitem__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		func = instance_getattr(inst, setitemstr); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	if (value == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		arg = Py_BuildValue("(O)", key); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		arg = Py_BuildValue("(OO)", key, value); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (arg == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-14 13:49:30 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (res == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyMappingMethods instance_as_mapping = { | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(inquiry)instance_length, /*mp_length*/ | 
					
						
							|  |  |  | 	(binaryfunc)instance_subscript, /*mp_subscript*/ | 
					
						
							|  |  |  | 	(objobjargproc)instance_ass_subscript, /*mp_ass_subscript*/ | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_item(inst, i) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func, *arg, *res; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (getitemstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		getitemstr = PyString_InternFromString("__getitem__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	func = instance_getattr(inst, getitemstr); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	arg = Py_BuildValue("(i)", i); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (arg == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_slice(inst, i, j) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	int i, j; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func, *arg, *res; | 
					
						
							|  |  |  | 	static PyObject *getslicestr; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (getslicestr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		getslicestr = PyString_InternFromString("__getslice__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	func = instance_getattr(inst, getslicestr); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	arg = Py_BuildValue("(ii)", i, j); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (arg == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | instance_ass_item(inst, i, item) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *item; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func, *arg, *res; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (item == NULL) { | 
					
						
							|  |  |  | 		if (delitemstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 			delitemstr = PyString_InternFromString("__delitem__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		func = instance_getattr(inst, delitemstr); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		if (setitemstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 			setitemstr = PyString_InternFromString("__setitem__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		func = instance_getattr(inst, setitemstr); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							| 
									
										
										
										
											1992-08-14 13:49:30 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (item == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		arg = Py_BuildValue("i", i); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		arg = Py_BuildValue("(iO)", i, item); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (arg == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-14 13:49:30 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (res == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | instance_ass_slice(inst, i, j, value) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *inst; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	int i, j; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *value; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func, *arg, *res; | 
					
						
							|  |  |  | 	static PyObject *setslicestr, *delslicestr; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (value == NULL) { | 
					
						
							|  |  |  | 		if (delslicestr == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			delslicestr = | 
					
						
							|  |  |  | 				PyString_InternFromString("__delslice__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		func = instance_getattr(inst, delslicestr); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		if (setslicestr == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			setslicestr = | 
					
						
							|  |  |  | 				PyString_InternFromString("__setslice__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		func = instance_getattr(inst, setslicestr); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							| 
									
										
										
										
											1992-08-14 13:49:30 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (value == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		arg = Py_BuildValue("(ii)", i, j); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		arg = Py_BuildValue("(iiO)", i, j, value); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (arg == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-14 13:49:30 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, arg); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(arg); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (res == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PySequenceMethods instance_as_sequence = { | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(inquiry)instance_length, /*sq_length*/ | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	0, /*sq_concat*/ | 
					
						
							|  |  |  | 	0, /*sq_repeat*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(intargfunc)instance_item, /*sq_item*/ | 
					
						
							|  |  |  | 	(intintargfunc)instance_slice, /*sq_slice*/ | 
					
						
							|  |  |  | 	(intobjargproc)instance_ass_item, /*sq_ass_item*/ | 
					
						
							|  |  |  | 	(intintobjargproc)instance_ass_slice, /*sq_ass_slice*/ | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | generic_unary_op(self, methodname) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *self; | 
					
						
							|  |  |  | 	PyObject *methodname; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func, *res; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((func = instance_getattr(self, methodname)) == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, (PyObject *)NULL); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Forward */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static int halfbinop Py_PROTO((PyObject *, PyObject *, char *, PyObject **, | 
					
						
							|  |  |  | 		PyObject * (*) Py_PROTO((PyObject *, PyObject *)), int )); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Implement a binary operator involving at least one class instance. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyInstance_DoBinOp(v, w, opname, ropname, thisfunc) | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | 	PyObject *w; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	char *opname; | 
					
						
							|  |  |  | 	char *ropname; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject * (*thisfunc) Py_PROTO((PyObject *, PyObject *)); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	char buf[256]; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *result = NULL; | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 	if (halfbinop(v, w, opname, &result, thisfunc, 0) <= 0) | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		return result; | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 	if (halfbinop(w, v, ropname, &result, thisfunc, 1) <= 0) | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		return result; | 
					
						
							| 
									
										
										
										
											1997-05-23 00:06:51 +00:00
										 |  |  | 	/* Sigh -- special case for comnparisons */ | 
					
						
							|  |  |  | 	if (strcmp(opname, "__cmp__") == 0) { | 
					
						
							|  |  |  | 		long c = (v < w) ? -1 : (v > w) ? 1 : 0; | 
					
						
							|  |  |  | 		return PyInt_FromLong(c); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	sprintf(buf, "%s nor %s defined for these operands", opname, ropname); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyErr_SetString(PyExc_TypeError, buf); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Try one half of a binary operator involving a class instance.
 | 
					
						
							|  |  |  |    Return value: | 
					
						
							|  |  |  |    -1 if an exception is to be reported right away | 
					
						
							|  |  |  |    0  if we have a valid result | 
					
						
							|  |  |  |    1  if we could try another operation | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject *coerce_obj; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | halfbinop(v, w, opname, r_result, thisfunc, swapped) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *v; | 
					
						
							|  |  |  | 	PyObject *w; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	char *opname; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject **r_result; | 
					
						
							|  |  |  | 	PyObject * (*thisfunc) Py_PROTO((PyObject *, PyObject *)); | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 	int swapped; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *args; | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 	PyObject *coercefunc; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *coerced = NULL; | 
					
						
							|  |  |  | 	PyObject *v1; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (!PyInstance_Check(v)) | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (coerce_obj == NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		coerce_obj = PyString_InternFromString("__coerce__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (coerce_obj == NULL) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 	coercefunc = PyObject_GetAttr(v, coerce_obj); | 
					
						
							|  |  |  | 	if (coercefunc == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		args = Py_BuildValue("(O)", w); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		if (args == NULL) { | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 		coerced = PyEval_CallObject(coercefunc, args); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(args); | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 		Py_DECREF(coercefunc); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		if (coerced == NULL) { | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		if (coerced == Py_None) { | 
					
						
							|  |  |  | 			Py_DECREF(coerced); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		if (!PyTuple_Check(coerced) || PyTuple_Size(coerced) != 2) { | 
					
						
							|  |  |  | 			Py_DECREF(coerced); | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 				   "coercion should return None or 2-tuple"); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		v1 = PyTuple_GetItem(coerced, 0); | 
					
						
							|  |  |  | 		w = PyTuple_GetItem(coerced, 1); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		if (v1 != v) { | 
					
						
							|  |  |  | 			v = v1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			if (!PyInstance_Check(v) && !PyInstance_Check(w)) { | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 				if (swapped) | 
					
						
							|  |  |  | 					*r_result = (*thisfunc)(w, v); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					*r_result = (*thisfunc)(v, w); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 				Py_DECREF(coerced); | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 				return *r_result == NULL ? -1 : 0; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	func = PyObject_GetAttrString(v, opname); | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 	if (func == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_XDECREF(coerced); | 
					
						
							| 
									
										
										
										
											1998-05-28 19:50:02 +00:00
										 |  |  | 		if (!PyErr_ExceptionMatches(PyExc_AttributeError)) | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 			return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1995-01-07 12:35:18 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	args = Py_BuildValue("(O)", w); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	if (args == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							|  |  |  | 		Py_XDECREF(coerced); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	*r_result = PyEval_CallObject(func, args); | 
					
						
							|  |  |  | 	Py_DECREF(args); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_XDECREF(coerced); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	return *r_result == NULL ? -1 : 0; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | instance_coerce(pv, pw) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject **pv; | 
					
						
							|  |  |  | 	PyObject **pw; | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *v = *pv; | 
					
						
							|  |  |  | 	PyObject *w = *pw; | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 	PyObject *coercefunc; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *args; | 
					
						
							|  |  |  | 	PyObject *coerced; | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (coerce_obj == NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		coerce_obj = PyString_InternFromString("__coerce__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (coerce_obj == NULL) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 	coercefunc = PyObject_GetAttr(v, coerce_obj); | 
					
						
							|  |  |  | 	if (coercefunc == NULL) { | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 		/* No __coerce__ method: always OK */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							|  |  |  | 		Py_INCREF(v); | 
					
						
							|  |  |  | 		Py_INCREF(w); | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Has __coerce__ method: call it */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	args = Py_BuildValue("(O)", w); | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 	if (args == NULL) { | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 	coerced = PyEval_CallObject(coercefunc, args); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(args); | 
					
						
							| 
									
										
										
										
											1997-11-18 19:23:07 +00:00
										 |  |  | 	Py_DECREF(coercefunc); | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 	if (coerced == NULL) { | 
					
						
							|  |  |  | 		/* __coerce__ call raised an exception */ | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (coerced == Py_None) { | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 		/* __coerce__ says "I can't do it" */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(coerced); | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (!PyTuple_Check(coerced) || PyTuple_Size(coerced) != 2) { | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 		/* __coerce__ return value is malformed */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(coerced); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 			   "coercion should return None or 2-tuple"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* __coerce__ returned two new values */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	*pv = PyTuple_GetItem(coerced, 0); | 
					
						
							|  |  |  | 	*pw = PyTuple_GetItem(coerced, 1); | 
					
						
							|  |  |  | 	Py_INCREF(*pv); | 
					
						
							|  |  |  | 	Py_INCREF(*pw); | 
					
						
							|  |  |  | 	Py_DECREF(coerced); | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define UNARY(funcname, methodname) \
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject *funcname(self) PyInstanceObject *self; { \ | 
					
						
							|  |  |  | 	static PyObject *o; \ | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 	if (o == NULL) o = PyString_InternFromString(methodname); \ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	return generic_unary_op(self, o); \ | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | UNARY(instance_neg, "__neg__") | 
					
						
							|  |  |  | UNARY(instance_pos, "__pos__") | 
					
						
							|  |  |  | UNARY(instance_abs, "__abs__") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | static int | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | instance_nonzero(self) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *self; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func, *res; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	long outcome; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	static PyObject *nonzerostr; | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (nonzerostr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		nonzerostr = PyString_InternFromString("__nonzero__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if ((func = instance_getattr(self, nonzerostr)) == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if (lenstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 			lenstr = PyString_InternFromString("__len__"); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 		if ((func = instance_getattr(self, lenstr)) == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 			PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 			/* Fall back to the default behavior:
 | 
					
						
							|  |  |  | 			   all instances are nonzero */ | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	res = PyEval_CallObject(func, (PyObject *)NULL); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (res == NULL) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (!PyInt_Check(res)) { | 
					
						
							|  |  |  | 		Py_DECREF(res); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"__nonzero__ should return an int"); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	outcome = PyInt_AsLong(res); | 
					
						
							|  |  |  | 	Py_DECREF(res); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	if (outcome < 0) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				"__nonzero__ should return >= 0"); | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return outcome > 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | UNARY(instance_invert, "__invert__") | 
					
						
							| 
									
										
										
										
											1992-09-12 11:09:23 +00:00
										 |  |  | UNARY(instance_int, "__int__") | 
					
						
							|  |  |  | UNARY(instance_long, "__long__") | 
					
						
							|  |  |  | UNARY(instance_float, "__float__") | 
					
						
							|  |  |  | UNARY(instance_oct, "__oct__") | 
					
						
							|  |  |  | UNARY(instance_hex, "__hex__") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | /* This version is for ternary calls only (z != None) */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | instance_pow(v, w, z) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *v; | 
					
						
							|  |  |  | 	PyObject *w; | 
					
						
							|  |  |  | 	PyObject *z; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* XXX Doesn't do coercions... */ | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *args; | 
					
						
							|  |  |  | 	PyObject *result; | 
					
						
							|  |  |  | 	static PyObject *powstr; | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (powstr == NULL) | 
					
						
							| 
									
										
										
										
											1997-01-18 07:59:12 +00:00
										 |  |  | 		powstr = PyString_InternFromString("__pow__"); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	func = PyObject_GetAttr(v, powstr); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	if (func == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	args = Py_BuildValue("(OO)", w, z); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	if (args == NULL) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		Py_DECREF(func); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	result = PyEval_CallObject(func, args); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 	Py_DECREF(args); | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyNumberMethods instance_as_number = { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	0, /*nb_add*/ | 
					
						
							|  |  |  | 	0, /*nb_subtract*/ | 
					
						
							|  |  |  | 	0, /*nb_multiply*/ | 
					
						
							|  |  |  | 	0, /*nb_divide*/ | 
					
						
							|  |  |  | 	0, /*nb_remainder*/ | 
					
						
							|  |  |  | 	0, /*nb_divmod*/ | 
					
						
							| 
									
										
										
										
											1994-09-05 07:32:29 +00:00
										 |  |  | 	(ternaryfunc)instance_pow, /*nb_power*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(unaryfunc)instance_neg, /*nb_negative*/ | 
					
						
							|  |  |  | 	(unaryfunc)instance_pos, /*nb_positive*/ | 
					
						
							|  |  |  | 	(unaryfunc)instance_abs, /*nb_absolute*/ | 
					
						
							|  |  |  | 	(inquiry)instance_nonzero, /*nb_nonzero*/ | 
					
						
							|  |  |  | 	(unaryfunc)instance_invert, /*nb_invert*/ | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	0, /*nb_lshift*/ | 
					
						
							|  |  |  | 	0, /*nb_rshift*/ | 
					
						
							|  |  |  | 	0, /*nb_and*/ | 
					
						
							|  |  |  | 	0, /*nb_xor*/ | 
					
						
							|  |  |  | 	0, /*nb_or*/ | 
					
						
							| 
									
										
										
										
											1995-01-10 15:24:06 +00:00
										 |  |  | 	(coercion)instance_coerce, /*nb_coerce*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(unaryfunc)instance_int, /*nb_int*/ | 
					
						
							|  |  |  | 	(unaryfunc)instance_long, /*nb_long*/ | 
					
						
							|  |  |  | 	(unaryfunc)instance_float, /*nb_float*/ | 
					
						
							|  |  |  | 	(unaryfunc)instance_oct, /*nb_oct*/ | 
					
						
							|  |  |  | 	(unaryfunc)instance_hex, /*nb_hex*/ | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyTypeObject PyInstance_Type = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1991-04-04 10:42:10 +00:00
										 |  |  | 	"instance", | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	sizeof(PyInstanceObject), | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(destructor)instance_dealloc, /*tp_dealloc*/ | 
					
						
							| 
									
										
										
										
											1992-09-17 17:54:56 +00:00
										 |  |  | 	0,			/*tp_print*/ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	0,			/*tp_getattr*/ | 
					
						
							|  |  |  | 	0,			/*tp_setattr*/ | 
					
						
							|  |  |  | 	instance_compare,	/*tp_compare*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(reprfunc)instance_repr, /*tp_repr*/ | 
					
						
							| 
									
										
										
										
											1992-08-12 15:35:34 +00:00
										 |  |  | 	&instance_as_number,	/*tp_as_number*/ | 
					
						
							|  |  |  | 	&instance_as_sequence,	/*tp_as_sequence*/ | 
					
						
							|  |  |  | 	&instance_as_mapping,	/*tp_as_mapping*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(hashfunc)instance_hash, /*tp_hash*/ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	0,			/*tp_call*/ | 
					
						
							|  |  |  | 	0,			/*tp_str*/ | 
					
						
							|  |  |  | 	(getattrofunc)instance_getattr, /*tp_getattro*/ | 
					
						
							|  |  |  | 	(setattrofunc)instance_setattr, /*tp_setattro*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | /* Instance method objects are used for two purposes:
 | 
					
						
							|  |  |  |    (a) as bound instance methods (returned by instancename.methodname) | 
					
						
							|  |  |  |    (b) as unbound methods (returned by ClassName.methodname) | 
					
						
							|  |  |  |    In case (b), im_self is NULL | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-05 02:06:53 +00:00
										 |  |  | static PyMethodObject *free_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyMethod_New(func, self, class) | 
					
						
							|  |  |  | 	PyObject *func; | 
					
						
							|  |  |  | 	PyObject *self; | 
					
						
							|  |  |  | 	PyObject *class; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyMethodObject *im; | 
					
						
							| 
									
										
										
										
											1998-07-08 14:58:16 +00:00
										 |  |  | 	if (!PyCallable_Check(func)) { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-05 02:06:53 +00:00
										 |  |  | 	im = free_list; | 
					
						
							|  |  |  | 	if (im != NULL) { | 
					
						
							|  |  |  | 		free_list = (PyMethodObject *)(im->im_self); | 
					
						
							|  |  |  | 		im->ob_type = &PyMethod_Type; | 
					
						
							|  |  |  | 		_Py_NewReference(im); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		im = PyObject_NEW(PyMethodObject, &PyMethod_Type); | 
					
						
							|  |  |  | 		if (im == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_INCREF(func); | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | 	im->im_func = func; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_XINCREF(self); | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | 	im->im_self = self; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_INCREF(class); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	im->im_class = class; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return (PyObject *)im; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyMethod_Function(im) | 
					
						
							|  |  |  | 	register PyObject *im; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (!PyMethod_Check(im)) { | 
					
						
							|  |  |  | 		PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return ((PyMethodObject *)im)->im_func; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyMethod_Self(im) | 
					
						
							|  |  |  | 	register PyObject *im; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (!PyMethod_Check(im)) { | 
					
						
							|  |  |  | 		PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return ((PyMethodObject *)im)->im_self; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyMethod_Class(im) | 
					
						
							|  |  |  | 	register PyObject *im; | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (!PyMethod_Check(im)) { | 
					
						
							|  |  |  | 		PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return ((PyMethodObject *)im)->im_class; | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Class method methods */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | #define OFF(x) offsetof(PyMethodObject, x)
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | static struct memberlist instancemethod_memberlist[] = { | 
					
						
							|  |  |  | 	{"im_func",	T_OBJECT,	OFF(im_func)}, | 
					
						
							|  |  |  | 	{"im_self",	T_OBJECT,	OFF(im_self)}, | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	{"im_class",	T_OBJECT,	OFF(im_class)}, | 
					
						
							| 
									
										
										
										
											1996-05-14 21:54:20 +00:00
										 |  |  | 	/* Dummies that are not handled by getattr() except for __members__ */ | 
					
						
							|  |  |  | 	{"__doc__",	T_INT,		0}, | 
					
						
							|  |  |  | 	{"__name__",	T_INT,		0}, | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	{NULL}	/* Sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | instancemethod_getattr(im, name) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyMethodObject *im; | 
					
						
							|  |  |  | 	PyObject *name; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	char *sname = PyString_AsString(name); | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	if (sname[0] == '_') { | 
					
						
							| 
									
										
										
										
											1998-07-08 14:58:16 +00:00
										 |  |  | 		/* Inherit __name__ and __doc__ from the callable object
 | 
					
						
							|  |  |  | 		   implementing the method */ | 
					
						
							|  |  |  | 	        if (strcmp(sname, "__name__") == 0 || | 
					
						
							|  |  |  | 		    strcmp(sname, "__doc__") == 0) | 
					
						
							|  |  |  | 			return PyObject_GetAttr(im->im_func, name); | 
					
						
							| 
									
										
										
										
											1996-05-14 21:54:20 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (PyEval_GetRestricted()) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  | 	    "instance-method attributes not accessible in restricted mode"); | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:49 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return PyMember_Get((char *)im, instancemethod_memberlist, sname); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											1991-05-05 20:03:07 +00:00
										 |  |  | instancemethod_dealloc(im) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	register PyMethodObject *im; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	Py_DECREF(im->im_func); | 
					
						
							|  |  |  | 	Py_XDECREF(im->im_self); | 
					
						
							|  |  |  | 	Py_DECREF(im->im_class); | 
					
						
							| 
									
										
										
										
											1997-08-05 02:06:53 +00:00
										 |  |  | 	im->im_self = (PyObject *)free_list; | 
					
						
							|  |  |  | 	free_list = im; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-09-03 20:39:51 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | instancemethod_compare(a, b) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyMethodObject *a, *b; | 
					
						
							| 
									
										
										
										
											1992-09-03 20:39:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1995-04-06 14:46:51 +00:00
										 |  |  | 	if (a->im_self != b->im_self) | 
					
						
							|  |  |  | 		return (a->im_self < b->im_self) ? -1 : 1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return PyObject_Compare(a->im_func, b->im_func); | 
					
						
							| 
									
										
										
										
											1992-09-03 20:39:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | instancemethod_repr(a) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyMethodObject *a; | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	char buf[240]; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyInstanceObject *self = (PyInstanceObject *)(a->im_self); | 
					
						
							| 
									
										
										
										
											1998-07-08 14:58:16 +00:00
										 |  |  | 	PyObject *func = a->im_func; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyClassObject *class = (PyClassObject *)(a->im_class); | 
					
						
							|  |  |  | 	PyObject *fclassname, *iclassname, *funcname; | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	char *fcname, *icname, *fname; | 
					
						
							|  |  |  | 	fclassname = class->cl_name; | 
					
						
							| 
									
										
										
										
											1998-07-08 14:58:16 +00:00
										 |  |  | 	if (PyFunction_Check(func)) { | 
					
						
							|  |  |  | 		funcname = ((PyFunctionObject *)func)->func_name; | 
					
						
							|  |  |  | 		Py_INCREF(funcname); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		funcname = PyObject_GetAttrString(func,"__name__"); | 
					
						
							|  |  |  | 		if (funcname == NULL) | 
					
						
							|  |  |  | 			PyErr_Clear(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (funcname != NULL && PyString_Check(funcname)) | 
					
						
							|  |  |  | 		fname = PyString_AS_STRING(funcname); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		fname = "?"; | 
					
						
							|  |  |  | 	Py_XDECREF(funcname); | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	if (fclassname != NULL && PyString_Check(fclassname)) | 
					
						
							|  |  |  | 		fcname = PyString_AsString(fclassname); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 		fcname = "?"; | 
					
						
							|  |  |  | 	if (self == NULL) | 
					
						
							|  |  |  | 		sprintf(buf, "<unbound method %.100s.%.100s>", fcname, fname); | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		iclassname = self->in_class->cl_name; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		if (iclassname != NULL && PyString_Check(iclassname)) | 
					
						
							|  |  |  | 			icname = PyString_AsString(iclassname); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			icname = "?"; | 
					
						
							|  |  |  | 		sprintf(buf, "<method %.60s.%.60s of %.60s instance at %lx>", | 
					
						
							|  |  |  | 			fcname, fname, icname, (long)self); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	return PyString_FromString(buf); | 
					
						
							| 
									
										
										
										
											1993-05-19 14:50:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | static long | 
					
						
							|  |  |  | instancemethod_hash(a) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	PyMethodObject *a; | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	long x, y; | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	if (a->im_self == NULL) | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		x = PyObject_Hash(Py_None); | 
					
						
							| 
									
										
										
										
											1993-05-20 14:24:46 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 		x = PyObject_Hash(a->im_self); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	if (x == -1) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	y = PyObject_Hash(a->im_func); | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | 	if (y == -1) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	return x ^ y; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | PyTypeObject PyMethod_Type = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1991-04-16 08:38:43 +00:00
										 |  |  | 	"instance method", | 
					
						
							| 
									
										
										
										
											1997-05-02 03:12:38 +00:00
										 |  |  | 	sizeof(PyMethodObject), | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(destructor)instancemethod_dealloc, /*tp_dealloc*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,			/*tp_print*/ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	0,			/*tp_getattr*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,			/*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(cmpfunc)instancemethod_compare, /*tp_compare*/ | 
					
						
							|  |  |  | 	(reprfunc)instancemethod_repr, /*tp_repr*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,			/*tp_as_number*/ | 
					
						
							|  |  |  | 	0,			/*tp_as_sequence*/ | 
					
						
							|  |  |  | 	0,			/*tp_as_mapping*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(hashfunc)instancemethod_hash, /*tp_hash*/ | 
					
						
							| 
									
										
										
										
											1996-08-09 20:53:24 +00:00
										 |  |  | 	0,			/*tp_call*/ | 
					
						
							|  |  |  | 	0,			/*tp_str*/ | 
					
						
							|  |  |  | 	(getattrofunc)instancemethod_getattr, /*tp_getattro*/ | 
					
						
							|  |  |  | 	0,			/*tp_setattro*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											1997-08-05 02:06:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Clear out the free list */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | PyMethod_Fini() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	while (free_list) { | 
					
						
							|  |  |  | 		PyMethodObject *v = free_list; | 
					
						
							|  |  |  | 		free_list = (PyMethodObject *)(v->im_self); | 
					
						
							|  |  |  | 		PyMem_DEL(v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |