MCPcopy
hub / github.com/numpy/numpy / lstrip

Method lstrip

numpy/_core/defchararray.py:979–989  ·  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

977 return asarray(lower(self))
978
979 def lstrip(self, chars=None):
980 """
981 For each element in `self`, return a copy with the leading characters
982 removed.
983
984 See Also
985 --------
986 char.lstrip
987
988 """
989 return lstrip(self, chars)
990
991 def partition(self, sep):
992 """

Callers 13

mainFunction · 0.80
fillFormatMethod · 0.80
find_functionsFunction · 0.80
test_lstripMethod · 0.80
test_lstripMethod · 0.80
_get_indentFunction · 0.80
test_passFunction · 0.80
parse_exprFunction · 0.80
parse_one_condFunction · 0.80
createfuncwrapperFunction · 0.80

Calls 1

lstripFunction · 0.85

Tested by 4

test_lstripMethod · 0.64
test_lstripMethod · 0.64
test_passFunction · 0.64