We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e09fe commit b22ca47Copy full SHA for b22ca47
pandas/io/html.py
@@ -473,7 +473,7 @@ def _expand_colspan_rowspan(
473
section: Literal["header", "footer", "body"],
474
remainder: list[tuple[int, str | tuple, int]] | None = None,
475
overflow: bool = True,
476
- ) -> list[list]:
+ ) -> tuple[list[list], list[tuple[int, str | tuple, int]]]:
477
"""
478
Given a list of <tr>s, return a list of text rows.
479
@@ -493,6 +493,9 @@ def _expand_colspan_rowspan(
493
list of list
494
Each returned row is a list of str text, or tuple (text, link)
495
if extract_links is not None.
496
+ remainder
497
+ Remaining partial rows if any. If overflow is False, an empty list
498
+ is returned.
499
500
Notes
501
-----
0 commit comments