diff options
author | Guido van Rossum <guido@python.org> | 1995-07-12 02:22:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-07-12 02:22:06 (GMT) |
commit | 1311e3ce73263854e3899d14cc636ccfa166eebf (patch) | |
tree | f266a6a8d552f9b340a46c2168683a08d9c7de38 /Objects/classobject.c | |
parent | b89ab8c6d23378f6be75978050c1b41d838f6269 (diff) | |
download | cpython-1311e3ce73263854e3899d14cc636ccfa166eebf.zip cpython-1311e3ce73263854e3899d14cc636ccfa166eebf.tar.gz cpython-1311e3ce73263854e3899d14cc636ccfa166eebf.tar.bz2 |
args to call_object must be tuple or NULL
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r-- | Objects/classobject.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index 6ef17b2..9870b6e 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -344,11 +344,7 @@ instance_dealloc(inst) INCREF(inst); err_fetch(&error_type, &error_value, &error_traceback); if ((del = instance_getattr1(inst, "__del__")) != NULL) { - object *args = newtupleobject(0); - object *res = args; - if (res != NULL) - res = call_object(del, args); - XDECREF(args); + object *res = call_object(del, (object *)NULL); DECREF(del); XDECREF(res); /* XXX If __del__ raised an exception, it is ignored! */ @@ -692,7 +688,7 @@ instance_item(inst, i) func = instance_getattr(inst, "__getitem__"); if (func == NULL) return NULL; - arg = newintobject((long)i); + arg = mkvalue("(i)", i); if (arg == NULL) { DECREF(func); return NULL; |