MCPcopy Index your code
hub / github.com/numpy/numpy / split

Method split

numpy/_core/defchararray.py:1084–1094  ·  view source on GitHub ↗

For each element in `self`, return a list of the words in the string, using `sep` as the delimiter string. See Also -------- char.split

(self, sep=None, maxsplit=None)

Source from the content-addressed store, hash-verified

1082 return rstrip(self, chars)
1083
1084 def split(self, sep=None, maxsplit=None):
1085 """
1086 For each element in `self`, return a list of the words in the
1087 string, using `sep` as the delimiter string.
1088
1089 See Also
1090 --------
1091 char.split
1092
1093 """
1094 return split(self, sep, maxsplit)
1095
1096 def splitlines(self, keepends=None):
1097 """

Callers 15

get_authorsFunction · 0.80
mainFunction · 0.80
get_submodule_pathsFunction · 0.80
validate_rst_syntaxFunction · 0.80
diff_filesFunction · 0.80
check_built_versionFunction · 0.80
get_versionFunction · 0.80
mark_lineMethod · 0.80
collect_statsFunction · 0.80
testTensor.pyFile · 0.80

Calls 1

splitFunction · 0.85

Tested by 15

_read_csvMethod · 0.64
test_legacy_pickleMethod · 0.64
test_legacy_pickleFunction · 0.64
_text_to_listFunction · 0.64
get_cpuinfo_itemMethod · 0.64
load_flags_auxvMethod · 0.64
_get_platformMethod · 0.64
_cpu_featuresMethod · 0.64
test_propertiesMethod · 0.64
test_splitMethod · 0.64
_get_cancast_tableFunction · 0.64
test_builtin_absMethod · 0.64