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

Method split

Lib/zipfile/__init__.py:218–223  ·  view source on GitHub ↗
(cls, data)

Source from the content-addressed store, hash-verified

216
217 @classmethod
218 def split(cls, data):
219 # use memoryview for zero-copy slices
220 rest = memoryview(data)
221 while rest:
222 extra, rest = _Extra.read_one(rest)
223 yield extra
224
225 @classmethod
226 def strip(cls, data, xids):

Callers 15

conf.pyFile · 0.45
mainFunction · 0.45
get_diff_filesFunction · 0.45
fail_if_new_news_nitFunction · 0.45
mainFunction · 0.45
runMethod · 0.45
parse_platformsMethod · 0.45
runMethod · 0.45
read_refcount_dataFunction · 0.45
read_threadsafety_dataFunction · 0.45
getSourceLinesMethod · 0.45
_renderSourceMethod · 0.45

Calls 1

read_oneMethod · 0.80

Tested by 11

_ellipsis_matchFunction · 0.36
_module_relative_pathFunction · 0.36
parseMethod · 0.36
_parse_exampleMethod · 0.36
_find_optionsMethod · 0.36
check_outputMethod · 0.36
format_failureMethod · 0.36
__repr__Method · 0.36
idMethod · 0.36
script_from_examplesFunction · 0.36
_testFunction · 0.36