MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / lstrip

Method lstrip

site-packages/numpy/core/defchararray.py:2393–2403  ·  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

2391 return asarray(lower(self))
2392
2393 def lstrip(self, chars=None):
2394 """
2395 For each element in `self`, return a copy with the leading characters
2396 removed.
2397
2398 See also
2399 --------
2400 char.lstrip
2401
2402 """
2403 return asarray(lstrip(self, chars))
2404
2405 def partition(self, sep):
2406 """

Callers 6

fillFormatMethod · 0.45
split_quotedFunction · 0.45
default_doc_funcFunction · 0.45
createfuncwrapperFunction · 0.45
createsubrwrapperFunction · 0.45

Calls 2

lstripFunction · 0.85
asarrayFunction · 0.70

Tested by

no test coverage detected