mirror of https://github.com/python/cpython
merge 3.3
This commit is contained in:
commit
1aca78da62
|
@ -2043,7 +2043,7 @@ fail:
|
|||
if (keys != NULL) {
|
||||
for (i = 0; i < saved_ob_size; i++)
|
||||
Py_DECREF(keys[i]);
|
||||
if (keys != &ms.temparray[saved_ob_size+1])
|
||||
if (saved_ob_size >= MERGESTATE_TEMP_SIZE/2)
|
||||
PyMem_FREE(keys);
|
||||
}
|
||||
|
||||
|
|
|
@ -37,8 +37,9 @@ Py_ssize_t quick_int_allocs, quick_neg_int_allocs;
|
|||
static PyObject *
|
||||
get_small_int(sdigit ival)
|
||||
{
|
||||
PyObject *v;
|
||||
assert(-NSMALLNEGINTS <= ival && ival < NSMALLPOSINTS);
|
||||
PyObject *v = (PyObject *)&small_ints[ival + NSMALLNEGINTS];
|
||||
v = (PyObject *)&small_ints[ival + NSMALLNEGINTS];
|
||||
Py_INCREF(v);
|
||||
#ifdef COUNT_ALLOCS
|
||||
if (ival >= 0)
|
||||
|
|
Loading…
Reference in New Issue