You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG: Patch handling no NA values in TextFileReader
When cleaning `na_values` during initialization of `TextFileReader`,
we return a `list` whenever we specify that `na_values` should be
empty. However, the rest of the code expects a `set`.
Closes#15835.
Author: gfyoung <[email protected]>
Closes#15881 from gfyoung/keep-default-na-excel and squashes the following commits:
0bb6f64 [gfyoung] BUG: Patch handling no NA values in TextFileReader
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.20.0.txt
+1
Original file line number
Diff line number
Diff line change
@@ -995,6 +995,7 @@ I/O
995
995
- Bug in ``pd.read_csv()`` for the C engine where ``usecols`` were being indexed incorrectly with ``parse_dates`` (:issue:`14792`)
996
996
- Bug in ``pd.read_csv()`` with ``parse_dates`` when multiline headers are specified (:issue:`15376`)
997
997
- Bug in ``pd.read_csv()`` with ``float_precision='round_trip'`` which caused a segfault when a text entry is parsed (:issue:`15140`)
998
+
- Bug in ``pd.read_csv()`` when an index was specified and no values were specified as null values (:issue:`15835`)
998
999
- Added checks in ``pd.read_csv()`` ensuring that values for ``nrows`` and ``chunksize`` are valid (:issue:`15767`)
999
1000
- Bug in ``pd.tools.hashing.hash_pandas_object()`` in which hashing of categoricals depended on the ordering of categories, instead of just their values. (:issue:`15143`)
1000
1001
- Bug in ``.to_json()`` where ``lines=True`` and contents (keys or values) contain escaped characters (:issue:`15096`)
0 commit comments