From 3fd26121c7e8cd9532471e395c6fa13f217f311a Mon Sep 17 00:00:00 2001 From: gfyoung Date: Wed, 26 Jul 2017 22:30:56 -0700 Subject: [PATCH] MAINT: Add missing space in parsers.pyx "2< heuristic" --> "2 < heuristic" --- pandas/_libs/parsers.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/_libs/parsers.pyx b/pandas/_libs/parsers.pyx index 543a943aea311..29ff9c401df48 100644 --- a/pandas/_libs/parsers.pyx +++ b/pandas/_libs/parsers.pyx @@ -563,7 +563,7 @@ cdef class TextReader: # compute buffer_lines as function of table width heuristic = 2**20 // self.table_width self.buffer_lines = 1 - while self.buffer_lines * 2< heuristic: + while self.buffer_lines * 2 < heuristic: self.buffer_lines *= 2 def __init__(self, *args, **kwargs):