MCPcopy Create free account
hub / github.com/numpy/numpy / split

Method split

numpy/core/defchararray.py:2594–2604  ·  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

2592 return asarray(rstrip(self, chars))
2593
2594 def split(self, sep=None, maxsplit=None):
2595 """
2596 For each element in `self`, return a list of the words in the
2597 string, using `sep` as the delimiter string.
2598
2599 See Also
2600 --------
2601 char.split
2602
2603 """
2604 return split(self, sep, maxsplit)
2605
2606 def splitlines(self, keepends=None):
2607 """

Callers 15

mainFunction · 0.45
build_projectFunction · 0.45
asv_substitute_configFunction · 0.45
setup.pyFile · 0.45
check_submodulesFunction · 0.45
setup_packageFunction · 0.45
get_authorsFunction · 0.45
mainFunction · 0.45
validate_rst_syntaxFunction · 0.45
check_outputMethod · 0.45
check_doctests_testfileFunction · 0.45
load_hashesFunction · 0.45

Calls 1

splitFunction · 0.70

Tested by 15

mainFunction · 0.36
build_projectFunction · 0.36
asv_substitute_configFunction · 0.36
test_setupFunction · 0.36
_read_csvMethod · 0.36
_text_to_listFunction · 0.36
get_cpuinfo_itemMethod · 0.36
load_flags_auxvMethod · 0.36
_cpu_featuresMethod · 0.36
test_propertiesMethod · 0.36
test_ticket_1538Method · 0.36
test_splitMethod · 0.36