Remove an unneeded assignment.

Found using Clang's static analyzer.
This commit is contained in:
Brett Cannon 2010-05-05 20:19:26 +00:00
parent fee3acb082
commit 8a478ced55
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ PyType_ClearCache(void)
{ {
Py_ssize_t i; Py_ssize_t i;
unsigned int cur_version_tag = next_version_tag - 1; unsigned int cur_version_tag = next_version_tag - 1;
for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) { for (i = 0; i < (1 << MCACHE_SIZE_EXP); i++) {
method_cache[i].version = 0; method_cache[i].version = 0;
Py_CLEAR(method_cache[i].name); Py_CLEAR(method_cache[i].name);
@ -971,7 +971,7 @@ subtype_dealloc(PyObject *self)
/* Clear slots up to the nearest base with a different tp_dealloc */ /* Clear slots up to the nearest base with a different tp_dealloc */
base = type; base = type;
while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { while (base->tp_dealloc == subtype_dealloc) {
if (Py_SIZE(base)) if (Py_SIZE(base))
clear_slots(base, self); clear_slots(base, self);
base = base->tp_base; base = base->tp_base;