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

Method rsplit

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

2568 return asarray(rpartition(self, sep))
2569
2570 def rsplit(self, sep=None, maxsplit=None):
2571 """
2572 For each element in `self`, return a list of the words in
2573 the string, using `sep` as the delimiter string.
2574
2575 See Also
2576 --------
2577 char.rsplit
2578
2579 """
2580 return rsplit(self, sep, maxsplit)
2581
2582 def rstrip(self, chars=None):
2583 """

Callers 3

test_rsplitMethod · 0.80
_get_glibc_versionFunction · 0.80
module_nameMethod · 0.80

Calls 1

rsplitFunction · 0.85

Tested by 1

test_rsplitMethod · 0.64