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

Method lstrip

numpy/core/defchararray.py:2489–2499  ·  view source on GitHub ↗

For each element in `self`, return a copy with the leading characters removed. See Also -------- char.lstrip

(self, chars=None)

Source from the content-addressed store, hash-verified

2487 return asarray(lower(self))
2488
2489 def lstrip(self, chars=None):
2490 """
2491 For each element in `self`, return a copy with the leading characters
2492 removed.
2493
2494 See Also
2495 --------
2496 char.lstrip
2497
2498 """
2499 return asarray(lstrip(self, chars))
2500
2501 def partition(self, sep):
2502 """

Callers 14

mainFunction · 0.80
check_outputMethod · 0.80
mainFunction · 0.80
parse_exprFunction · 0.80
parse_one_condFunction · 0.80
fillFormatMethod · 0.80
find_functionsFunction · 0.80
test_lstripMethod · 0.80
__call__Method · 0.80
_get_indentFunction · 0.80
createfuncwrapperFunction · 0.80

Calls 2

lstripFunction · 0.85
asarrayFunction · 0.70

Tested by 2

mainFunction · 0.64
test_lstripMethod · 0.64