MCPcopy Index your code
hub / github.com/python/cpython / lstrip

Method lstrip

Lib/collections/__init__.py:1588–1589  ·  view source on GitHub ↗
(self, chars=None)

Source from the content-addressed store, hash-verified

1586 return self.__class__(self.data.lower())
1587
1588 def lstrip(self, chars=None):
1589 return self.__class__(self.data.lstrip(chars))
1590
1591 maketrans = str.maketrans
1592

Callers 15

literal_evalFunction · 0.45
_slotnamesFunction · 0.45
_check_urlMethod · 0.45
indentsizeFunction · 0.45
cleandocFunction · 0.45
getcommentsFunction · 0.45
output_lineMethod · 0.45
_should_show_caretsMethod · 0.45
_format_syntax_errorMethod · 0.45
completeMethod · 0.45
_get_filtered_attrsFunction · 0.45
gettarinfoMethod · 0.45

Calls 1

__class__Method · 0.45

Tested by 1

_unpack_srcMethod · 0.36