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

Method _str_lower

pandas/core/strings/object_array.py:484–485  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

482 return self._str_map(str.swapcase)
483
484 def _str_lower(self):
485 return self._str_map(str.lower)
486
487 def _str_normalize(self, form):
488 f = lambda x: unicodedata.normalize(form, x)

Callers 1

lowerMethod · 0.45

Calls 1

_str_mapMethod · 0.95

Tested by

no test coverage detected