Comment out a dead increment.

Found by Clang's static analyzer.
This commit is contained in:
Brett Cannon 2012-06-25 16:13:44 -04:00
parent 555bfc7ed0
commit 8a250fac15
1 changed files with 1 additions and 1 deletions

View File

@ -642,7 +642,7 @@ fill_number(_PyUnicodeWriter *writer, const NumberFieldWidths *spec,
writer->buffer, writer->pos,
digits, d_pos, spec->n_remainder);
writer->pos += spec->n_remainder;
d_pos += spec->n_remainder;
/* d_pos += spec->n_remainder; */
}
if (spec->n_rpadding) {