MCPcopy Index your code
hub / github.com/RustPython/RustPython / 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

_get_capabilitiesMethod · 0.45
imaplib.pyFile · 0.45
ParseFlagsFunction · 0.45
create_archiveFunction · 0.45
mainFunction · 0.45
makedirsFunction · 0.45
removedirsFunction · 0.45
renamesFunction · 0.45
get_exec_pathFunction · 0.45
disFunction · 0.45
_localizeFunction · 0.45
normalizeFunction · 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