Skip to content

Commit

Permalink
Remove debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffknupp committed Jul 23, 2017
1 parent 2930eaa commit 2ab4971
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions pandas/_libs/src/parser/tokenizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1258,12 +1258,7 @@ int parser_trim_buffers(parser_t *self) {
}

/* trim stream */
if (new_cap < INT32_MAX) {
new_cap = _next_pow2(self->stream_len) + 1;
} else {
new_cap *= 2;
}

new_cap = _next_pow2(self->stream_len) + 1;
TRACE(
("parser_trim_buffers: new_cap = %zu, stream_cap = %zu, lines_cap = "
"%zu\n",
Expand Down

0 comments on commit 2ab4971

Please sign in to comment.