File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 700
700
- Bug in :meth: `read_csv ` raising ``TypeError `` when ``nrows `` and ``iterator `` are specified without specifying a ``chunksize ``. (:issue: `59079 `)
701
701
- Bug in :meth: `read_csv ` where the order of the ``na_values `` makes an inconsistency when ``na_values `` is a list non-string values. (:issue: `59303 `)
702
702
- Bug in :meth: `read_excel ` raising ``ValueError `` when passing array of boolean values when ``dtype="boolean" ``. (:issue: `58159 `)
703
+ - Bug in :meth: `read_html ` where ``rowspan `` in header row causes incorrect conversion to ``DataFrame ``. (:issue: `60210 `)
703
704
- Bug in :meth: `read_json ` not validating the ``typ `` argument to not be exactly ``"frame" `` or ``"series" `` (:issue: `59124 `)
704
705
- Bug in :meth: `read_json ` where extreme value integers in string format were incorrectly parsed as a different integer number (:issue: `20608 `)
705
706
- Bug in :meth: `read_stata ` raising ``KeyError `` when input file is stored in big-endian format and contains strL data. (:issue: `58638 `)
Original file line number Diff line number Diff line change @@ -459,7 +459,7 @@ def row_is_all_th(row):
459
459
body_rows ,
460
460
section = "body" ,
461
461
remainder = rem ,
462
- overflow = True if len (footer_rows ) > 0 else False ,
462
+ overflow = len (footer_rows ) > 0 ,
463
463
)
464
464
footer , _ = self ._expand_colspan_rowspan (
465
465
footer_rows , section = "footer" , remainder = rem , overflow = False
You can’t perform that action at this time.
0 commit comments