Skip to content

Commit b834277

Browse files
committed
update changes post review
1 parent bdc0cfd commit b834277

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

doc/source/whatsnew/v3.0.0.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,6 @@ I/O
627627
- Bug in :meth:`DataFrame.to_stata` when writing :class:`DataFrame` and ``byteorder=`big```. (:issue:`58969`)
628628
- Bug in :meth:`DataFrame.to_string` that raised ``StopIteration`` with nested DataFrames. (:issue:`16098`)
629629
- Bug in :meth:`HDFStore.get` was failing to save data of dtype datetime64[s] correctly (:issue:`59004`)
630-
- Bug in :meth:`HTMLFormatter._write_cell_` which ignored the spacing between strings. (:issue:`59876`)
631630
- Bug in :meth:`read_csv` causing segmentation fault when ``encoding_errors`` is not a string. (:issue:`59059`)
632631
- Bug in :meth:`read_csv` raising ``TypeError`` when ``index_col`` is specified and ``na_values`` is a dict containing the key ``None``. (:issue:`57547`)
633632
- Bug in :meth:`read_csv` raising ``TypeError`` when ``nrows`` and ``iterator`` are specified without specifying a ``chunksize``. (:issue:`59079`)

pandas/tests/io/formats/test_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def test_repr_min_rows(self):
388388
"foo foo    foo",
389389
), # even no.of spaces
390390
],
391-
) # test float formatting and nbsp in strings
391+
)
392392
def test_repr_float_formatting_html_output(
393393
self, data, format_option, expected_values
394394
):

0 commit comments

Comments
 (0)