commit | 8a250fac15ecb2604461ea5753638269e342eb91 | [log] [tgz] |
---|---|---|
author | Brett Cannon <brett@python.org> | Mon Jun 25 16:13:44 2012 -0400 |
committer | Brett Cannon <brett@python.org> | Mon Jun 25 16:13:44 2012 -0400 |
tree | 642d3860d1cc08f7cbeccc45539d1bb33d135703 | |
parent | 555bfc7ed08e25f40342d7f0bc24e5380d515bfe [diff] [blame] |
Comment out a dead increment. Found by Clang's static analyzer.
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 4b0fd91..661bf19 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c
@@ -642,7 +642,7 @@ 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) {