Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added str in index_col attribute in read_excel function description #55843 #55865

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions pandas/io/excel/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def read_excel(
*,
header: int | Sequence[int] | None = ...,
names: SequenceNotStr[Hashable] | range | None = ...,
index_col: int | Sequence[int] | None = ...,
index_col: int | str | Sequence[int] | None = ...,
usecols: int
| str
| Sequence[int]
Expand Down Expand Up @@ -430,7 +430,7 @@ def read_excel(
*,
header: int | Sequence[int] | None = ...,
names: SequenceNotStr[Hashable] | range | None = ...,
index_col: int | Sequence[int] | None = ...,
index_col: int | str | Sequence[int] | None = ...,
usecols: int
| str
| Sequence[int]
Expand Down Expand Up @@ -469,7 +469,7 @@ def read_excel(
*,
header: int | Sequence[int] | None = 0,
names: SequenceNotStr[Hashable] | range | None = None,
index_col: int | Sequence[int] | None = None,
index_col: int | str | Sequence[int] | None = None,
usecols: int
| str
| Sequence[int]
Expand Down Expand Up @@ -668,7 +668,7 @@ def _check_skiprows_func(
def _calc_rows(
self,
header: int | Sequence[int] | None,
index_col: int | Sequence[int] | None,
index_col: int | str | Sequence[int] | None,
skiprows: Sequence[int] | int | Callable[[int], object] | None,
nrows: int | None,
) -> int | None:
Expand All @@ -681,7 +681,7 @@ def _calc_rows(
----------
header : int, list of int, or None
See read_excel docstring.
index_col : int, list of int, or None
index_col : int, str, list of int, or None
See read_excel docstring.
skiprows : list-like, int, callable, or None
See read_excel docstring.
Expand Down Expand Up @@ -734,7 +734,7 @@ def parse(
sheet_name: str | int | list[int] | list[str] | None = 0,
header: int | Sequence[int] | None = 0,
names: SequenceNotStr[Hashable] | range | None = None,
index_col: int | Sequence[int] | None = None,
index_col: int | str | Sequence[int] | None = None,
usecols=None,
dtype: DtypeArg | None = None,
true_values: Iterable[Hashable] | None = None,
Expand Down Expand Up @@ -1593,7 +1593,7 @@ def parse(
sheet_name: str | int | list[int] | list[str] | None = 0,
header: int | Sequence[int] | None = 0,
names: SequenceNotStr[Hashable] | range | None = None,
index_col: int | Sequence[int] | None = None,
index_col: int | str | Sequence[int] | None = None,
usecols=None,
converters=None,
true_values: Iterable[Hashable] | None = None,
Expand Down
Loading