mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
* Extended X interface: pixmap objects, colormap objects visual objects,
image objects, and lots of new methods. * Added counting of allocations and deallocations of builtin types if COUNT_ALLOCS is defined. Had to move calls to NEWREF down in some files. * Bug fix in sorting lists.
This commit is contained in:
parent
35fe6ec4cf
commit
a9c3c22c33
12 changed files with 150 additions and 18 deletions
|
@ -58,11 +58,11 @@ newlistobject(size)
|
|||
return err_nomem();
|
||||
}
|
||||
}
|
||||
NEWREF(op);
|
||||
op->ob_type = &Listtype;
|
||||
op->ob_size = size;
|
||||
for (i = 0; i < size; i++)
|
||||
op->ob_item[i] = NULL;
|
||||
NEWREF(op);
|
||||
return (object *) op;
|
||||
}
|
||||
|
||||
|
@ -520,7 +520,7 @@ cmp(v, w)
|
|||
return cmpobject(* (object **) v, * (object **) w);
|
||||
|
||||
/* Call the user-supplied comparison function */
|
||||
t = mkvalue("OO", v, w);
|
||||
t = mkvalue("OO", * (object **) v, * (object **) w);
|
||||
if (t == NULL)
|
||||
return 0;
|
||||
res = call_object(cmpfunc, t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue