Fix comment alignment; add whatsnew entry · rs2/pandas@1f24847 (original) (raw)

Original file line number Diff line number Diff line change
@@ -201,7 +201,8 @@ I/O
201 201 ^^^
202 202
203 203 - Bug in :func:`read_csv` in which non integer values for the header argument generated an unhelpful / unrelated error message (:issue:`16338`)
204 -
204 +- Bug in :func:`read_csv` in which passing a CSV with at least one very large (i.e. more than 2^31 - 1 bytes) column along with ``low_memory=False`` would cause an integer overflow. The result was an always unsuccessful attempt to allocate an enourmous buffer and then reporting "Out of memory." (:issue:`16798`).
205 +- Bug in :func:`read_csv` in which some errors paths were assigning error messages to the internal tokenizer's ``error_msg`` field without first allocating the memory. When this happened as part of exception handling, it resulted in a double ``free`` and the program halted due to a ``SIGSEGV`` (:issue:`16798`).
205 206 - Bug in :func:`read_stata` where value labels could not be read when using an iterator (:issue:`16923`)
206 207
207 208 Plotting