MCPcopy Create free account
hub / github.com/numpy/numpy / lower

Method lower

numpy/core/defchararray.py:2477–2487  ·  view source on GitHub ↗

Return an array with the elements of `self` converted to lowercase. See Also -------- char.lower

(self)

Source from the content-addressed store, hash-verified

2475 return asarray(ljust(self, width, fillchar))
2476
2477 def lower(self):
2478 """
2479 Return an array with the elements of `self` converted to
2480 lowercase.
2481
2482 See Also
2483 --------
2484 char.lower
2485
2486 """
2487 return asarray(lower(self))
2488
2489 def lstrip(self, chars=None):
2490 """

Callers 15

_legacy_cmpkeyFunction · 0.80
_parse_letter_versionFunction · 0.80
_parse_local_versionFunction · 0.80
_scalar_type_keyFunction · 0.80
test_lowerMethod · 0.80
test_iter_copy_castsFunction · 0.80
_checkMethod · 0.80
test_simpleMethod · 0.80
test_simpleMethod · 0.80
lookforFunction · 0.80

Calls 2

lowerFunction · 0.85
asarrayFunction · 0.70

Tested by 11

test_lowerMethod · 0.64
test_iter_copy_castsFunction · 0.64
_checkMethod · 0.64
test_simpleMethod · 0.64
test_simpleMethod · 0.64
test_nul_character_errorFunction · 0.64
get_classFunction · 0.64
__getattr__Method · 0.64