MCPcopy
hub / github.com/pandas-dev/pandas / _str_findall

Method _str_findall

pandas/core/strings/object_array.py:294–296  ·  view source on GitHub ↗
(self, pat, flags: int = 0)

Source from the content-addressed store, hash-verified

292 return self._str_map(f, dtype="int64")
293
294 def _str_findall(self, pat, flags: int = 0):
295 regex = re.compile(pat, flags=flags)
296 return self._str_map(regex.findall, dtype="object")
297
298 def _str_get(self, i):
299 def f(x):

Callers 1

findallMethod · 0.45

Calls 1

_str_mapMethod · 0.95

Tested by

no test coverage detected