Skip to content
Merged
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
10 changes: 5 additions & 5 deletions pandas/core/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,12 +604,12 @@ def at(self) -> _AtIndexer:
Raises
------
KeyError
* If getting a value and 'label' does not exist in a DataFrame or
Series.
If getting a value and 'label' does not exist in a DataFrame or Series.

ValueError
* If row/column label pair is not a tuple or if any label from
the pair is not a scalar for DataFrame.
* If label is list-like (*excluding* NamedTuple) for Series.
If row/column label pair is not a tuple or if any label
from the pair is not a scalar for DataFrame.
If label is list-like (*excluding* NamedTuple) for Series.

See Also
--------
Expand Down