mirror of https://github.com/python/cpython
Comment out a dead increment.
Found by Clang's static analyzer.
This commit is contained in:
parent
555bfc7ed0
commit
8a250fac15
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue