Skip to content

Commit 8dbf928

Browse files
felixdivoJulianWgs
authored andcommitted
Fix wrongly associated docstring of Series.str.isspace (pandas-dev#42017)
1 parent 668febb commit 8dbf928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/strings/accessor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3005,7 +3005,7 @@ def casefold(self):
30053005
"isdigit", docstring=_shared_docs["ismethods"] % _doc_args["isdigit"]
30063006
)
30073007
isspace = _map_and_wrap(
3008-
"isspace", docstring=_shared_docs["ismethods"] % _doc_args["isalnum"]
3008+
"isspace", docstring=_shared_docs["ismethods"] % _doc_args["isspace"]
30093009
)
30103010
islower = _map_and_wrap(
30113011
"islower", docstring=_shared_docs["ismethods"] % _doc_args["islower"]

0 commit comments

Comments
 (0)