MCPcopy Create free account
hub / github.com/MergHQ/CRYENGINE / split

Method split

Editor/Python/Lib/UserString.py:118–119  ·  view source on GitHub ↗
(self, sep=None, maxsplit=-1)

Source from the content-addressed store, hash-verified

116 return self.data.rpartition(sep)
117 def rstrip(self, chars=None): return self.__class__(self.data.rstrip(chars))
118 def split(self, sep=None, maxsplit=-1):
119 return self.data.split(sep, maxsplit)
120 def rsplit(self, sep=None, maxsplit=-1):
121 return self.data.rsplit(sep, maxsplit)
122 def splitlines(self, keepends=0): return self.data.splitlines(keepends)

Callers 15

AddUniqueFolderPathMethod · 0.80
split_pathFunction · 0.80
split_path_cygwinFunction · 0.80
split_path_win32Function · 0.80
to_patMethod · 0.80
parse_optionsFunction · 0.80
_can_distcleanFunction · 0.80
checkMethod · 0.80
updateFunction · 0.80
storeMethod · 0.80
modifFunction · 0.80
set_colorMethod · 0.80

Calls

no outgoing calls

Tested by 12

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