summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-03-21 19:17:22 (GMT)
committerGuido van Rossum <guido@python.org>2001-03-21 19:17:22 (GMT)
commit66b0e9c2a77bd991ea55ad361bad4eb1a3dc5e78 (patch)
tree2ce80adbf2ff6d02980566f90a67c5e402a166b5 /Python
parent69e9e8bd514717f74e19ba97a644ef47f0150534 (diff)
downloadcpython-66b0e9c2a77bd991ea55ad361bad4eb1a3dc5e78.zip
cpython-66b0e9c2a77bd991ea55ad361bad4eb1a3dc5e78.tar.gz
cpython-66b0e9c2a77bd991ea55ad361bad4eb1a3dc5e78.tar.bz2
Use PyObject_IsInstance() to check whether the first argument to an
unbound method is of the right type. Hopefully this solves SF patch #409355 (Meta-class inheritance problem); I have no easy way to test.
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c32
1 files changed, 19 insertions, 13 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 22b3ea0..156866f 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1402,7 +1402,7 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals,
case BREAK_LOOP:
why = WHY_BREAK;
break;
-
+
case CONTINUE_LOOP:
retval = PyInt_FromLong(oparg);
why = WHY_CONTINUE;
@@ -2181,7 +2181,7 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals,
if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) {
/* For a continue inside a try block,
don't pop the block for the loop. */
- PyFrame_BlockSetup(f, b->b_type, b->b_level,
+ PyFrame_BlockSetup(f, b->b_type, b->b_level,
b->b_handler);
why = WHY_NOT;
JUMPTO(PyInt_AS_LONG(retval));
@@ -2825,22 +2825,28 @@ call_method(PyObject *func, PyObject *arg, PyObject *kw)
if (self == NULL) {
/* Unbound methods must be called with an instance of
the class (or a derived class) as first argument */
+ int ok;
if (PyTuple_Size(arg) >= 1)
self = PyTuple_GET_ITEM(arg, 0);
- if (!(self != NULL && PyInstance_Check(self)
- && PyClass_IsSubclass((PyObject *)
- (((PyInstanceObject *)self)->in_class),
- class))) {
- PyObject* fn = ((PyFunctionObject*) func)->func_name;
- PyErr_Format(PyExc_TypeError,
- "unbound method %s%smust be "
- "called with instance as first argument",
- fn ? PyString_AsString(fn) : "",
- fn ? "() " : "");
+ if (self == NULL)
+ ok = 0;
+ else {
+ ok = PyObject_IsInstance(self, class);
+ if (ok < 0)
+ return NULL;
+ }
+ if (!ok) {
+ PyObject* fn = ((PyFunctionObject*) func)->func_name;
+ PyErr_Format(PyExc_TypeError,
+ "unbound method %s%smust be "
+ "called with instance as first argument",
+ fn ? PyString_AsString(fn) : "",
+ fn ? "() " : "");
return NULL;
}
Py_INCREF(arg);
- } else {
+ }
+ else {
int argcount = PyTuple_Size(arg);
PyObject *newarg = PyTuple_New(argcount + 1);
int i;