Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.Series.str.encode PR07,RT03,SA01" \
-i "pandas.Series.str.find RT03" \
-i "pandas.Series.str.fullmatch RT03" \
-i "pandas.Series.str.get RT03,SA01" \
-i "pandas.Series.str.index RT03" \
-i "pandas.Series.str.ljust RT03,SA01" \
-i "pandas.Series.str.lower RT03" \
Expand Down
7 changes: 7 additions & 0 deletions pandas/core/strings/accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1085,6 +1085,13 @@ def get(self, i):
Returns
-------
Series or Index
Series or Index where each value is the extracted element from
the corresponding input component.

See Also
--------
Series.str.extract : Extract capture groups in the regex as columns
in a DataFrame.

Examples
--------
Expand Down