MCPcopy Index your code
hub / github.com/RustPython/RustPython / splitlines

Method splitlines

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

Source from the content-addressed store, hash-verified

1586 return self.data.rsplit(sep, maxsplit)
1587
1588 def splitlines(self, keepends=False):
1589 return self.data.splitlines(keepends)
1590
1591 def startswith(self, prefix, start=0, end=_sys.maxsize):
1592 return self.data.startswith(prefix, start, end)

Callers 15

writeMethod · 0.45
_default_sysrootFunction · 0.45
synopsisFunction · 0.45
runMethod · 0.45
addpackageFunction · 0.45
format_frame_summaryMethod · 0.45
_find_keyword_typosMethod · 0.45
output_differenceMethod · 0.45
_showtracebackMethod · 0.45
readMethod · 0.45

Calls

no outgoing calls

Tested by 2

output_differenceMethod · 0.36