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

Method rsplit

numpy/_core/defchararray.py:1060–1070  ·  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.rsplit

(self, sep=None, maxsplit=None)

Source from the content-addressed store, hash-verified

1058 return asarray(rpartition(self, sep))
1059
1060 def rsplit(self, sep=None, maxsplit=None):
1061 """
1062 For each element in `self`, return a list of the words in
1063 the string, using `sep` as the delimiter string.
1064
1065 See Also
1066 --------
1067 char.rsplit
1068
1069 """
1070 return rsplit(self, sep, maxsplit)
1071
1072 def rstrip(self, chars=None):
1073 """

Callers 3

test_rsplitMethod · 0.80
_get_glibc_versionFunction · 0.80
module_nameMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_rsplitMethod · 0.64