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

Method rpartition

numpy/core/defchararray.py:2560–2568  ·  view source on GitHub ↗

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

(self, sep)

Source from the content-addressed store, hash-verified

2558 return asarray(rjust(self, width, fillchar))
2559
2560 def rpartition(self, sep):
2561 """
2562 Partition each element in `self` around `sep`.
2563
2564 See Also
2565 --------
2566 rpartition
2567 """
2568 return asarray(rpartition(self, sep))
2569
2570 def rsplit(self, sep=None, maxsplit=None):
2571 """

Callers 2

set_sigFunction · 0.80
test_rpartitionMethod · 0.80

Calls 2

rpartitionFunction · 0.85
asarrayFunction · 0.70

Tested by 1

test_rpartitionMethod · 0.64