Let marshal build-up sets and frozensets one element at a time.

Saves the unnecessary creation of a tuple as intermediate container.
This commit is contained in:
Raymond Hettinger 2008-01-26 08:37:28 +00:00
parent 08b50eb3d3
commit b423f02aa5
1 changed files with 8 additions and 12 deletions

View File

@ -860,7 +860,7 @@ r_object(RFILE *p)
retval = NULL;
break;
}
v = PyTuple_New((int)n);
v = (type == TYPE_SET) ? PySet_New(NULL) : PyFrozenSet_New(NULL);
if (v == NULL) {
retval = NULL;
break;
@ -875,18 +875,14 @@ r_object(RFILE *p)
v = NULL;
break;
}
PyTuple_SET_ITEM(v, (int)i, v2);
if (PySet_Add(v, v2) == -1) {
Py_DECREF(v);
Py_DECREF(v2);
v = NULL;
break;
}
}
if (v == NULL) {
retval = NULL;
break;
}
if (type == TYPE_SET)
v3 = PySet_New(v);
else
v3 = PyFrozenSet_New(v);
Py_DECREF(v);
retval = v3;
retval = (v == NULL) ? NULL : v;
break;
case TYPE_CODE: