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

Method rpartition

numpy/_core/defchararray.py:1050–1058  ·  view source on GitHub ↗

Partition each element in `self` around `sep`. See Also -------- rpartition

(self, sep)

Source from the content-addressed store, hash-verified

1048 return asarray(rjust(self, width, fillchar))
1049
1050 def rpartition(self, sep):
1051 """
1052 Partition each element in `self` around `sep`.
1053
1054 See Also
1055 --------
1056 rpartition
1057 """
1058 return asarray(rpartition(self, sep))
1059
1060 def rsplit(self, sep=None, maxsplit=None):
1061 """

Callers 5

test_rpartitionMethod · 0.80
test_rpartitionMethod · 0.80
test_rpartitionMethod · 0.80
test_rpartitionMethod · 0.80

Calls 2

asarrayFunction · 0.70
rpartitionFunction · 0.70

Tested by 5

test_rpartitionMethod · 0.64
test_rpartitionMethod · 0.64
test_rpartitionMethod · 0.64
test_rpartitionMethod · 0.64