| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							|  |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         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, | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +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 | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +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. | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Abstract Object Interface (many thanks to Jim Fulton) */ | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Shorthands to return certain errors */ | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | type_error(msg) | 
					
						
							|  |  |  | 	char *msg; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyErr_SetString(PyExc_TypeError, msg); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-11-11 15:08:19 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | null_error() | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (!PyErr_Occurred()) | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_SystemError, | 
					
						
							|  |  |  | 				"null argument to internal routine"); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Copied with modifications from stropmodule.c: atoi, atof, atol */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | int_from_string(v) | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	extern long PyOS_strtol Py_PROTO((const char *, char **, int)); | 
					
						
							|  |  |  | 	char *s, *end; | 
					
						
							|  |  |  | 	long x; | 
					
						
							|  |  |  | 	char buffer[256]; /* For errors */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s = PyString_AS_STRING(v); | 
					
						
							|  |  |  | 	while (*s && isspace(Py_CHARMASK(*s))) | 
					
						
							|  |  |  | 		s++; | 
					
						
							|  |  |  | 	if (s[0] == '\0') { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, "empty string for int()"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	errno = 0; | 
					
						
							|  |  |  | 	x = PyOS_strtol(s, &end, 10); | 
					
						
							|  |  |  | 	while (*end && isspace(Py_CHARMASK(*end))) | 
					
						
							|  |  |  | 		end++; | 
					
						
							|  |  |  | 	if (*end != '\0') { | 
					
						
							|  |  |  | 		sprintf(buffer, "invalid literal for int(): %.200s", s); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, buffer); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (end-s != PyString_GET_SIZE(v)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				"null byte in argument for int()"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (errno != 0) { | 
					
						
							|  |  |  | 		sprintf(buffer, "int() literal too large: %.200s", s); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, buffer); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return PyInt_FromLong(x); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | long_from_string(v) | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	char *s, *end; | 
					
						
							|  |  |  | 	PyObject *x; | 
					
						
							|  |  |  | 	char buffer[256]; /* For errors */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s = PyString_AS_STRING(v); | 
					
						
							|  |  |  | 	while (*s && isspace(Py_CHARMASK(*s))) | 
					
						
							|  |  |  | 		s++; | 
					
						
							|  |  |  | 	if (s[0] == '\0') { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, "empty string for long()"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	x = PyLong_FromString(s, &end, 10); | 
					
						
							|  |  |  | 	if (x == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	while (*end && isspace(Py_CHARMASK(*end))) | 
					
						
							|  |  |  | 		end++; | 
					
						
							|  |  |  | 	if (*end != '\0') { | 
					
						
							|  |  |  | 		sprintf(buffer, "invalid literal for long(): %.200s", s); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, buffer); | 
					
						
							|  |  |  | 		Py_DECREF(x); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (end-s != PyString_GET_SIZE(v)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				"null byte in argument for float()"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return x; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | float_from_string(v) | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	extern double strtod Py_PROTO((const char *, char **)); | 
					
						
							|  |  |  | 	char *s, *end; | 
					
						
							|  |  |  | 	double x; | 
					
						
							|  |  |  | 	char buffer[256]; /* For errors */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s = PyString_AS_STRING(v); | 
					
						
							|  |  |  | 	while (*s && isspace(Py_CHARMASK(*s))) | 
					
						
							|  |  |  | 		s++; | 
					
						
							|  |  |  | 	if (s[0] == '\0') { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, "empty string for float()"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	errno = 0; | 
					
						
							|  |  |  | 	PyFPE_START_PROTECT("float_from_string", return 0) | 
					
						
							|  |  |  | 	x = strtod(s, &end); | 
					
						
							|  |  |  | 	PyFPE_END_PROTECT(x) | 
					
						
							|  |  |  | 	while (*end && isspace(Py_CHARMASK(*end))) | 
					
						
							|  |  |  | 		end++; | 
					
						
							|  |  |  | 	if (*end != '\0') { | 
					
						
							|  |  |  | 		sprintf(buffer, "invalid literal for float(): %.200s", s); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, buffer); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (end-s != PyString_GET_SIZE(v)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				"null byte in argument for float()"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (errno != 0) { | 
					
						
							|  |  |  | 		sprintf(buffer, "float() literal too large: %.200s", s); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, buffer); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return PyFloat_FromDouble(x); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Operations on any object */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PyObject_Cmp(o1, o2, result) | 
					
						
							|  |  |  | 	PyObject *o1; | 
					
						
							|  |  |  | 	PyObject *o2; | 
					
						
							|  |  |  | 	int *result; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	int r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (o1 == NULL || o2 == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	r = PyObject_Compare(o1, o2); | 
					
						
							|  |  |  | 	if (PyErr_Occurred()) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	*result = r; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyObject_Type(o) | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	v = (PyObject *)o->ob_type; | 
					
						
							|  |  |  | 	Py_INCREF(v); | 
					
						
							|  |  |  | 	return v; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyObject_Length(o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = o->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_length) | 
					
						
							|  |  |  | 		return m->sq_length(o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return PyMapping_Length(o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyObject_GetItem(o, key) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	PyObject *key; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyMappingMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL || key == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = o->ob_type->tp_as_mapping; | 
					
						
							|  |  |  | 	if (m && m->mp_subscript) | 
					
						
							|  |  |  | 		return m->mp_subscript(o, key); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (PyInt_Check(key)) | 
					
						
							|  |  |  | 		return PySequence_GetItem(o, PyInt_AsLong(key)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return type_error("unsubscriptable object"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyObject_SetItem(o, key, value) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	PyObject *key; | 
					
						
							|  |  |  | 	PyObject *value; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyMappingMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL || key == NULL || value == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_mapping; | 
					
						
							|  |  |  | 	if (m && m->mp_ass_subscript) | 
					
						
							|  |  |  | 		return m->mp_ass_subscript(o, key, value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (PyInt_Check(key)) | 
					
						
							|  |  |  | 		return PySequence_SetItem(o, PyInt_AsLong(key), value); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	type_error("object does not support item assignment"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PyObject_DelItem(o, key) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	PyObject *key; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyMappingMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (o == NULL || key == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_mapping; | 
					
						
							|  |  |  | 	if (m && m->mp_ass_subscript) | 
					
						
							|  |  |  | 		return m->mp_ass_subscript(o, key, (PyObject*)NULL); | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (PyInt_Check(key)) | 
					
						
							|  |  |  | 		return PySequence_DelItem(o, PyInt_AsLong(key)); | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	type_error("object does not support item deletion"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Operations on numbers */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyNumber_Check(o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return o && o->ob_type->tp_as_number; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Binary operators */ | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | #define BINOP(v, w, opname, ropname, thisfunc) \
 | 
					
						
							|  |  |  | 	if (PyInstance_Check(v) || PyInstance_Check(w)) \ | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 		return PyInstance_DoBinOp(v, w, opname, ropname, thisfunc) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Or(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         extern int PyNumber_Coerce(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__or__", "__ror__", PyNumber_Or); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | 		PyObject *x = NULL; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 		PyObject * (*f) Py_FPROTO((PyObject *, PyObject *)); | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		if ((f = v->ob_type->tp_as_number->nb_or) != NULL) | 
					
						
							|  |  |  | 			x = (*f)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		if (f != NULL) | 
					
						
							|  |  |  | 			return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for |"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Xor(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         extern int PyNumber_Coerce(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__xor__", "__rxor__", PyNumber_Xor); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | 		PyObject *x = NULL; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 		PyObject * (*f) Py_FPROTO((PyObject *, PyObject *)); | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		if ((f = v->ob_type->tp_as_number->nb_xor) != NULL) | 
					
						
							|  |  |  | 			x = (*f)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		if (f != NULL) | 
					
						
							|  |  |  | 			return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for ^"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_And(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__and__", "__rand__", PyNumber_And); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | 		PyObject *x = NULL; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 		PyObject * (*f) Py_FPROTO((PyObject *, PyObject *)); | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		if ((f = v->ob_type->tp_as_number->nb_and) != NULL) | 
					
						
							|  |  |  | 			x = (*f)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		if (f != NULL) | 
					
						
							|  |  |  | 			return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for &"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Lshift(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__lshift__", "__rlshift__", PyNumber_Lshift); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | 		PyObject *x = NULL; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 		PyObject * (*f) Py_FPROTO((PyObject *, PyObject *)); | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		if ((f = v->ob_type->tp_as_number->nb_lshift) != NULL) | 
					
						
							|  |  |  | 			x = (*f)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		if (f != NULL) | 
					
						
							|  |  |  | 			return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for <<"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Rshift(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__rshift__", "__rrshift__", PyNumber_Rshift); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | 		PyObject *x = NULL; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 		PyObject * (*f) Py_FPROTO((PyObject *, PyObject *)); | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		if ((f = v->ob_type->tp_as_number->nb_rshift) != NULL) | 
					
						
							|  |  |  | 			x = (*f)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		if (f != NULL) | 
					
						
							|  |  |  | 			return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for >>"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Add(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BINOP(v, w, "__add__", "__radd__", PyNumber_Add); | 
					
						
							|  |  |  | 	m = v->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_concat) | 
					
						
							|  |  |  | 		return (*m->sq_concat)(v, w); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	else if (v->ob_type->tp_as_number != NULL) { | 
					
						
							|  |  |  | 		PyObject *x; | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		x = (*v->ob_type->tp_as_number->nb_add)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for +"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Subtract(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__sub__", "__rsub__", PyNumber_Subtract); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							|  |  |  | 		PyObject *x; | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		x = (*v->ob_type->tp_as_number->nb_subtract)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for -"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Multiply(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyTypeObject *tp = v->ob_type; | 
					
						
							|  |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BINOP(v, w, "__mul__", "__rmul__", PyNumber_Multiply); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (tp->tp_as_number != NULL && | 
					
						
							|  |  |  | 	    w->ob_type->tp_as_sequence != NULL && | 
					
						
							|  |  |  | 	    !PyInstance_Check(v)) { | 
					
						
							|  |  |  | 		/* number*sequence -- swap v and w */ | 
					
						
							|  |  |  | 		PyObject *tmp = v; | 
					
						
							|  |  |  | 		v = w; | 
					
						
							|  |  |  | 		w = tmp; | 
					
						
							|  |  |  | 		tp = v->ob_type; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (tp->tp_as_number != NULL) { | 
					
						
							|  |  |  | 		PyObject *x; | 
					
						
							|  |  |  | 		if (PyInstance_Check(v)) { | 
					
						
							|  |  |  | 			/* Instances of user-defined classes get their
 | 
					
						
							|  |  |  | 			   other argument uncoerced, so they may | 
					
						
							|  |  |  | 			   implement sequence*number as well as | 
					
						
							|  |  |  | 			   number*number. */ | 
					
						
							|  |  |  | 			Py_INCREF(v); | 
					
						
							|  |  |  | 			Py_INCREF(w); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		x = (*v->ob_type->tp_as_number->nb_multiply)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = tp->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_repeat) { | 
					
						
							|  |  |  | 		if (!PyInt_Check(w)) | 
					
						
							|  |  |  | 			return type_error( | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 				"can't multiply sequence with non-int"); | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 		return (*m->sq_repeat)(v, (int)PyInt_AsLong(w)); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for *"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Divide(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__div__", "__rdiv__", PyNumber_Divide); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							|  |  |  | 		PyObject *x; | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		x = (*v->ob_type->tp_as_number->nb_divide)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for /"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Remainder(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (PyString_Check(v)) { | 
					
						
							|  |  |  | 		return PyString_Format(v, w); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__mod__", "__rmod__", PyNumber_Remainder); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							|  |  |  | 		PyObject *x; | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		x = (*v->ob_type->tp_as_number->nb_remainder)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		return x; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for %"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | PyNumber_Divmod(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	BINOP(v, w, "__divmod__", "__rdivmod__", PyNumber_Divmod); | 
					
						
							|  |  |  | 	if (v->ob_type->tp_as_number != NULL) { | 
					
						
							|  |  |  | 		PyObject *x; | 
					
						
							|  |  |  | 		if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		x = (*v->ob_type->tp_as_number->nb_divmod)(v, w); | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		Py_DECREF(w); | 
					
						
							|  |  |  | 		return x; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type(s) for divmod()"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Power (binary or ternary) */ | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | do_pow(v, w) | 
					
						
							|  |  |  | 	PyObject *v, *w; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							|  |  |  | 	if (PyInstance_Check(v) || PyInstance_Check(w)) | 
					
						
							|  |  |  | 		return PyInstance_DoBinOp(v, w, "__pow__", "__rpow__", do_pow); | 
					
						
							|  |  |  | 	if (v->ob_type->tp_as_number == NULL || | 
					
						
							|  |  |  | 	    w->ob_type->tp_as_number == NULL) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"pow() requires numeric arguments"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if ( | 
					
						
							|  |  |  | #ifndef WITHOUT_COMPLEX
 | 
					
						
							|  |  |  |             !PyComplex_Check(v) &&  | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             PyFloat_Check(w) && PyFloat_AsDouble(v) < 0.0) { | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 		if (!PyErr_Occurred()) | 
					
						
							|  |  |  | 		    PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				    "negative number to float power"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	res = (*v->ob_type->tp_as_number->nb_power)(v, w, Py_None); | 
					
						
							|  |  |  | 	Py_DECREF(v); | 
					
						
							|  |  |  | 	Py_DECREF(w); | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PyNumber_Power(v, w, z) | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	PyObject *v, *w, *z; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *res; | 
					
						
							|  |  |  | 	PyObject *v1, *z1, *w2, *z2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (z == Py_None) | 
					
						
							|  |  |  | 		return do_pow(v, w); | 
					
						
							|  |  |  | 	/* XXX The ternary version doesn't do class instance coercions */ | 
					
						
							|  |  |  | 	if (PyInstance_Check(v)) | 
					
						
							|  |  |  | 		return v->ob_type->tp_as_number->nb_power(v, w, z); | 
					
						
							|  |  |  | 	if (v->ob_type->tp_as_number == NULL || | 
					
						
							|  |  |  | 	    z->ob_type->tp_as_number == NULL || | 
					
						
							|  |  |  | 	    w->ob_type->tp_as_number == NULL) { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 		return type_error("pow() requires numeric arguments"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (PyNumber_Coerce(&v, &w) != 0) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	res = NULL; | 
					
						
							|  |  |  | 	v1 = v; | 
					
						
							|  |  |  | 	z1 = z; | 
					
						
							|  |  |  | 	if (PyNumber_Coerce(&v1, &z1) != 0) | 
					
						
							|  |  |  | 		goto error2; | 
					
						
							|  |  |  | 	w2 = w; | 
					
						
							|  |  |  | 	z2 = z1; | 
					
						
							|  |  |  |  	if (PyNumber_Coerce(&w2, &z2) != 0) | 
					
						
							|  |  |  | 		goto error1; | 
					
						
							|  |  |  | 	res = (*v1->ob_type->tp_as_number->nb_power)(v1, w2, z2); | 
					
						
							|  |  |  | 	Py_DECREF(w2); | 
					
						
							|  |  |  | 	Py_DECREF(z2); | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  |   error1: | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	Py_DECREF(v1); | 
					
						
							|  |  |  | 	Py_DECREF(z1); | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  |   error2: | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	Py_DECREF(v); | 
					
						
							|  |  |  | 	Py_DECREF(w); | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Unary operators and functions */ | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PyNumber_Negative(o) | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyNumberMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_number; | 
					
						
							|  |  |  | 	if (m && m->nb_negative) | 
					
						
							|  |  |  | 		return (*m->nb_negative)(o); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return type_error("bad operand type for unary -"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PyNumber_Positive(o) | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyNumberMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_number; | 
					
						
							|  |  |  | 	if (m && m->nb_positive) | 
					
						
							|  |  |  | 		return (*m->nb_positive)(o); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return type_error("bad operand type for unary +"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PyNumber_Invert(o) | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyNumberMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_number; | 
					
						
							|  |  |  | 	if (m && m->nb_invert) | 
					
						
							|  |  |  | 		return (*m->nb_invert)(o); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return type_error("bad operand type for unary ~"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyNumber_Absolute(o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyNumberMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_number; | 
					
						
							|  |  |  | 	if (m && m->nb_absolute) | 
					
						
							|  |  |  | 		return m->nb_absolute(o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("bad operand type for abs()"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyNumber_Int(o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyNumberMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	if (PyString_Check(o)) | 
					
						
							|  |  |  | 		return int_from_string(o); | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_number; | 
					
						
							|  |  |  | 	if (m && m->nb_int) | 
					
						
							|  |  |  | 		return m->nb_int(o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("object can't be converted to int"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyNumber_Long(o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyNumberMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	if (PyString_Check(o)) | 
					
						
							|  |  |  | 		return long_from_string(o); | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_number; | 
					
						
							|  |  |  | 	if (m && m->nb_long) | 
					
						
							|  |  |  | 		return m->nb_long(o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("object can't be converted to long"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyNumber_Float(o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyNumberMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	if (PyString_Check(o)) | 
					
						
							|  |  |  | 		return float_from_string(o); | 
					
						
							|  |  |  | 	m = o->ob_type->tp_as_number; | 
					
						
							|  |  |  | 	if (m && m->nb_float) | 
					
						
							|  |  |  | 		return m->nb_float(o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("object can't be converted to float"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Operations on sequences */ | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PySequence_Check(s) | 
					
						
							|  |  |  | 	PyObject *s; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return s != NULL && s->ob_type->tp_as_sequence; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_Length(s) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (s == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_length) | 
					
						
							|  |  |  | 		return m->sq_length(s); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	type_error("len() of unsized object"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_Concat(s, o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (s == NULL || o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_concat) | 
					
						
							|  |  |  | 		return m->sq_concat(s, o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("object can't be concatenated"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_Repeat(o, count) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	int count; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = o->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_repeat) | 
					
						
							|  |  |  | 		return m->sq_repeat(o, count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return type_error("object can't be repeated"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_GetItem(s, i) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (s == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_item) { | 
					
						
							|  |  |  | 		if (i < 0) { | 
					
						
							|  |  |  | 			if (m->sq_length) { | 
					
						
							|  |  |  | 				int l = (*m->sq_length)(s); | 
					
						
							|  |  |  | 				if (l < 0) | 
					
						
							|  |  |  | 					return NULL; | 
					
						
							|  |  |  | 				i += l; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return m->sq_item(s, i); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("unindexable object"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_GetSlice(s, i1, i2) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	int i1; | 
					
						
							|  |  |  | 	int i2; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!s) return null_error(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_slice) { | 
					
						
							|  |  |  | 		if (i1 < 0 || i2 < 0) { | 
					
						
							|  |  |  | 			if (m->sq_length) { | 
					
						
							|  |  |  | 				int l = (*m->sq_length)(s); | 
					
						
							|  |  |  | 				if (l < 0) | 
					
						
							|  |  |  | 					return NULL; | 
					
						
							|  |  |  | 				if (i1 < 0) | 
					
						
							|  |  |  | 					i1 += l; | 
					
						
							|  |  |  | 				if (i2 < 0) | 
					
						
							|  |  |  | 					i2 += l; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return m->sq_slice(s, i1, i2); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-04-02 05:31:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return type_error("unsliceable object"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_SetItem(s, i, o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (s == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_ass_item) { | 
					
						
							|  |  |  | 		if (i < 0) { | 
					
						
							|  |  |  | 			if (m->sq_length) { | 
					
						
							|  |  |  | 				int l = (*m->sq_length)(s); | 
					
						
							|  |  |  | 				if (l < 0) | 
					
						
							|  |  |  | 					return NULL; | 
					
						
							|  |  |  | 				i += l; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return m->sq_ass_item(s, i, o); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	type_error("object doesn't support item assignment"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PySequence_DelItem(s, i) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (s == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_ass_item) { | 
					
						
							|  |  |  | 		if (i < 0) { | 
					
						
							|  |  |  | 			if (m->sq_length) { | 
					
						
							|  |  |  | 				int l = (*m->sq_length)(s); | 
					
						
							|  |  |  | 				if (l < 0) | 
					
						
							|  |  |  | 					return NULL; | 
					
						
							|  |  |  | 				i += l; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return m->sq_ass_item(s, i, (PyObject *)NULL); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	type_error("object doesn't support item deletion"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_SetSlice(s, i1, i2, o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	int i1; | 
					
						
							|  |  |  | 	int i2; | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (s == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_ass_slice) { | 
					
						
							|  |  |  | 		if (i1 < 0 || i2 < 0) { | 
					
						
							|  |  |  | 			if (m->sq_length) { | 
					
						
							|  |  |  | 				int l = (*m->sq_length)(s); | 
					
						
							|  |  |  | 				if (l < 0) | 
					
						
							|  |  |  | 					return NULL; | 
					
						
							|  |  |  | 				if (i1 < 0) | 
					
						
							|  |  |  | 					i1 += l; | 
					
						
							|  |  |  | 				if (i2 < 0) | 
					
						
							|  |  |  | 					i2 += l; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return m->sq_ass_slice(s, i1, i2, o); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	type_error("object doesn't support slice assignment"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | PySequence_DelSlice(s, i1, i2) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	int i1; | 
					
						
							|  |  |  | 	int i2; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (s == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = s->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_ass_slice) { | 
					
						
							|  |  |  | 		if (i1 < 0 || i2 < 0) { | 
					
						
							|  |  |  | 			if (m->sq_length) { | 
					
						
							|  |  |  | 				int l = (*m->sq_length)(s); | 
					
						
							|  |  |  | 				if (l < 0) | 
					
						
							|  |  |  | 					return NULL; | 
					
						
							|  |  |  | 				if (i1 < 0) | 
					
						
							|  |  |  | 					i1 += l; | 
					
						
							|  |  |  | 				if (i2 < 0) | 
					
						
							|  |  |  | 					i2 += l; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return m->sq_ass_slice(s, i1, i2, (PyObject *)NULL); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	type_error("object doesn't support slice deletion"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1996-08-21 17:41:54 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PySequence_Tuple(v) | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (v == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (PyTuple_Check(v)) { | 
					
						
							|  |  |  | 		Py_INCREF(v); | 
					
						
							|  |  |  | 		return v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (PyList_Check(v)) | 
					
						
							|  |  |  | 		return PyList_AsTuple(v); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (PyString_Check(v)) { | 
					
						
							|  |  |  | 		int n = PyString_Size(v); | 
					
						
							|  |  |  | 		PyObject *t = PyTuple_New(n); | 
					
						
							|  |  |  | 		if (t != NULL) { | 
					
						
							|  |  |  | 			int i; | 
					
						
							|  |  |  | 			char *p = PyString_AsString(v); | 
					
						
							|  |  |  | 			for (i = 0; i < n; i++) { | 
					
						
							|  |  |  | 				PyObject *item = | 
					
						
							|  |  |  | 					PyString_FromStringAndSize(p+i, 1); | 
					
						
							|  |  |  | 				if (item == NULL) { | 
					
						
							|  |  |  | 					Py_DECREF(t); | 
					
						
							|  |  |  | 					t = NULL; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				PyTuple_SetItem(t, i, item); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return t; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	/* Generic sequence object */ | 
					
						
							|  |  |  | 	m = v->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_item) { | 
					
						
							|  |  |  | 		/* XXX Should support indefinite-length sequences */ | 
					
						
							|  |  |  | 		int i; | 
					
						
							|  |  |  | 		PyObject *t; | 
					
						
							|  |  |  | 		int n = PySequence_Length(v); | 
					
						
							|  |  |  | 		if (n < 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		t = PyTuple_New(n); | 
					
						
							|  |  |  | 		if (t == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		for (i = 0; i < n; i++) { | 
					
						
							|  |  |  | 			PyObject *item = (*m->sq_item)(v, i); | 
					
						
							|  |  |  | 			if (item == NULL) { | 
					
						
							|  |  |  | 				Py_DECREF(t); | 
					
						
							|  |  |  | 				t = NULL; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			PyTuple_SetItem(t, i, item); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return t; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* None of the above */ | 
					
						
							|  |  |  | 	return type_error("tuple() argument must be a sequence"); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PySequence_List(v) | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PySequenceMethods *m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m = v->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (m && m->sq_item) { | 
					
						
							|  |  |  | 		/* XXX Should support indefinite-length sequences */ | 
					
						
							|  |  |  | 		int i; | 
					
						
							|  |  |  | 		PyObject *l; | 
					
						
							|  |  |  | 		int n = PySequence_Length(v); | 
					
						
							|  |  |  | 		if (n < 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		l = PyList_New(n); | 
					
						
							|  |  |  | 		if (l == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		for (i = 0; i < n; i++) { | 
					
						
							|  |  |  | 			PyObject *item = (*m->sq_item)(v, i); | 
					
						
							|  |  |  | 			if (item == NULL) { | 
					
						
							|  |  |  | 				Py_DECREF(l); | 
					
						
							|  |  |  | 				l = NULL; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			PyList_SetItem(l, i, item); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return l; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return type_error("list() argument must be a sequence"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1997-04-02 05:31:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PySequence_Count(s, o) | 
					
						
							|  |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int l, i, n, cmp, err; | 
					
						
							|  |  |  | 	PyObject *item; | 
					
						
							| 
									
										
										
										
											1997-04-02 05:31:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (s == NULL || o == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	l = PySequence_Length(s); | 
					
						
							|  |  |  | 	if (l < 0) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	n = 0; | 
					
						
							|  |  |  | 	for (i = 0; i < l; i++) { | 
					
						
							|  |  |  | 		item = PySequence_GetItem(s, i); | 
					
						
							|  |  |  | 		if (item == NULL) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		err = PyObject_Cmp(item, o, &cmp); | 
					
						
							|  |  |  | 		Py_DECREF(item); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		if (cmp == 0) | 
					
						
							|  |  |  | 			n++; | 
					
						
							| 
									
										
										
										
											1997-04-02 05:31:09 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return n; | 
					
						
							| 
									
										
										
										
											1996-12-05 21:51:24 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PySequence_Contains(w, v) /* v in w */ | 
					
						
							|  |  |  | 	PyObject *w; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	int i, cmp; | 
					
						
							|  |  |  | 	PyObject *x; | 
					
						
							|  |  |  | 	PySequenceMethods *sq; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Special case for char in string */ | 
					
						
							|  |  |  | 	if (PyString_Check(w)) { | 
					
						
							|  |  |  | 		register char *s, *end; | 
					
						
							|  |  |  | 		register char c; | 
					
						
							|  |  |  | 		if (!PyString_Check(v) || PyString_Size(v) != 1) { | 
					
						
							|  |  |  | 			PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 			    "string member test needs char left operand"); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		c = PyString_AsString(v)[0]; | 
					
						
							|  |  |  | 		s = PyString_AsString(w); | 
					
						
							|  |  |  | 		end = s + PyString_Size(w); | 
					
						
							|  |  |  | 		while (s < end) { | 
					
						
							|  |  |  | 			if (c == *s++) | 
					
						
							|  |  |  | 				return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sq = w->ob_type->tp_as_sequence; | 
					
						
							|  |  |  | 	if (sq == NULL || sq->sq_item == NULL) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 			"'in' or 'not in' needs sequence right argument"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; ; i++) { | 
					
						
							|  |  |  | 		x = (*sq->sq_item)(w, i); | 
					
						
							|  |  |  | 		if (x == NULL) { | 
					
						
							|  |  |  | 			if (PyErr_Occurred() == PyExc_IndexError) { | 
					
						
							|  |  |  | 				PyErr_Clear(); | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		cmp = PyObject_Compare(v, x); | 
					
						
							|  |  |  | 		Py_XDECREF(x); | 
					
						
							|  |  |  | 		if (cmp == 0) | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		if (PyErr_Occurred()) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Backwards compatibility */ | 
					
						
							|  |  |  | #undef PySequence_In
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | PySequence_In(w, v) | 
					
						
							|  |  |  | 	PyObject *w; | 
					
						
							|  |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return PySequence_Contains(w, v); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PySequence_Index(s, o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *s; | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	int l, i, cmp, err; | 
					
						
							|  |  |  | 	PyObject *item; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (s == NULL || o == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	l = PySequence_Length(s); | 
					
						
							|  |  |  | 	if (l < 0) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < l; i++) { | 
					
						
							|  |  |  | 		item = PySequence_GetItem(s, i); | 
					
						
							|  |  |  | 		if (item == NULL) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		err = PyObject_Cmp(item, o, &cmp); | 
					
						
							|  |  |  | 		Py_DECREF(item); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		if (cmp == 0) | 
					
						
							|  |  |  | 			return i; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyErr_SetString(PyExc_ValueError, "sequence.index(x): x not in list"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Operations on mappings */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyMapping_Check(o) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	return o && o->ob_type->tp_as_mapping; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PyMapping_Length(o) | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyMappingMethods *m; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	m = o->ob_type->tp_as_mapping; | 
					
						
							|  |  |  | 	if (m && m->mp_length) | 
					
						
							|  |  |  | 		return m->mp_length(o); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	type_error("len() of unsized object"); | 
					
						
							|  |  |  | 	return -1; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PyObject * | 
					
						
							|  |  |  | PyMapping_GetItemString(o, key) | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	char *key; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *okey, *r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (key == NULL) | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	okey = PyString_FromString(key); | 
					
						
							|  |  |  | 	if (okey == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	r = PyObject_GetItem(o, okey); | 
					
						
							|  |  |  | 	Py_DECREF(okey); | 
					
						
							|  |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | PyMapping_SetItemString(o, key, value) | 
					
						
							|  |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	char *key; | 
					
						
							|  |  |  | 	PyObject *value; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject *okey; | 
					
						
							|  |  |  | 	int r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (key == NULL) { | 
					
						
							|  |  |  | 		null_error(); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	okey = PyString_FromString(key); | 
					
						
							|  |  |  | 	if (okey == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	r = PyObject_SetItem(o, okey, value); | 
					
						
							|  |  |  | 	Py_DECREF(okey); | 
					
						
							|  |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyMapping_HasKeyString(o, key) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	char *key; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	v = PyMapping_GetItemString(o, key); | 
					
						
							|  |  |  | 	if (v) { | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	PyErr_Clear(); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyMapping_HasKey(o, key) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	PyObject *key; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	v = PyObject_GetItem(o, key); | 
					
						
							|  |  |  | 	if (v) { | 
					
						
							|  |  |  | 		Py_DECREF(v); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	PyErr_Clear(); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | /* Operations on callable objects */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* XXX PyCallable_Check() is in object.c */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | PyObject * | 
					
						
							| 
									
										
										
										
											1995-09-18 21:17:59 +00:00
										 |  |  | PyObject_CallObject(o, a) | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o, *a; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *r; | 
					
						
							|  |  |  | 	PyObject *args = a; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (args == NULL) { | 
					
						
							|  |  |  | 		args = PyTuple_New(0); | 
					
						
							|  |  |  | 		if (args == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	r = PyEval_CallObject(o, args); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (args != a) | 
					
						
							|  |  |  | 		Py_DECREF(args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return r; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							|  |  |  | /* VARARGS 2 */ | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | PyObject_CallFunction(PyObject *callable, char *format, ...) | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | /* VARARGS */ | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject_CallFunction(va_alist) va_dcl | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	va_list va; | 
					
						
							|  |  |  | 	PyObject *args, *retval; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	va_start(va, format); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *callable; | 
					
						
							|  |  |  | 	char *format; | 
					
						
							|  |  |  | 	va_start(va); | 
					
						
							|  |  |  | 	callable = va_arg(va, PyObject *); | 
					
						
							|  |  |  | 	format   = va_arg(va, char *); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (callable == NULL) { | 
					
						
							|  |  |  | 		va_end(va); | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (format) | 
					
						
							|  |  |  | 		args = Py_VaBuildValue(format, va); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		args = PyTuple_New(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_end(va); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (args == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyTuple_Check(args)) { | 
					
						
							|  |  |  | 		PyObject *a; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		a = PyTuple_New(1); | 
					
						
							|  |  |  | 		if (a == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		if (PyTuple_SetItem(a, 0, args) < 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		args = a; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	retval = PyObject_CallObject(callable, args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Py_DECREF(args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject * | 
					
						
							|  |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							|  |  |  | /* VARARGS 2 */ | 
					
						
							|  |  |  | PyObject_CallMethod(PyObject *o, char *name, char *format, ...) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | /* VARARGS */ | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject_CallMethod(va_alist) va_dcl | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	va_list va; | 
					
						
							|  |  |  | 	PyObject *args, *func = 0, *retval; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #ifdef HAVE_STDARG_PROTOTYPES
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	va_start(va, format); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	PyObject *o; | 
					
						
							|  |  |  | 	char *name; | 
					
						
							|  |  |  | 	char *format; | 
					
						
							|  |  |  | 	va_start(va); | 
					
						
							|  |  |  | 	o      = va_arg(va, PyObject *); | 
					
						
							|  |  |  | 	name   = va_arg(va, char *); | 
					
						
							|  |  |  | 	format = va_arg(va, char *); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (o == NULL || name == NULL) { | 
					
						
							|  |  |  | 		va_end(va); | 
					
						
							|  |  |  | 		return null_error(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	func = PyObject_GetAttrString(o, name); | 
					
						
							|  |  |  | 	if (func == NULL) { | 
					
						
							|  |  |  | 		va_end(va); | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_AttributeError, name); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (!PyCallable_Check(func)) { | 
					
						
							|  |  |  | 		va_end(va); | 
					
						
							|  |  |  | 		return type_error("call of non-callable attribute"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-22 00:47:05 +00:00
										 |  |  | 	if (format && *format) | 
					
						
							|  |  |  | 		args = Py_VaBuildValue(format, va); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		args = PyTuple_New(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	va_end(va); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!args) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!PyTuple_Check(args)) { | 
					
						
							|  |  |  | 		PyObject *a; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		a = PyTuple_New(1); | 
					
						
							|  |  |  | 		if (a == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		if (PyTuple_SetItem(a, 0, args) < 0) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		args = a; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	retval = PyObject_CallObject(func, args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Py_DECREF(args); | 
					
						
							|  |  |  | 	Py_DECREF(func); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:12:02 +00:00
										 |  |  | } |