Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/pandas-dev/pandas
/ _str_isspace
Method
_str_isspace
pandas/core/strings/object_array.py:463–464 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
461
return
self._str_map(str.isnumeric, dtype=
"bool"
)
462
463
def
_str_isspace(self):
464
return
self._str_map(str.isspace, dtype=
"bool"
)
465
466
def
_str_istitle(self):
467
return
self._str_map(str.istitle, dtype=
"bool"
)
Callers
1
isspace
Method · 0.45
Calls
1
_str_map
Method · 0.95
Tested by
no test coverage detected