MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / partition

Method partition

site-packages/numpy/core/defchararray.py:2405–2413  ·  view source on GitHub ↗

Partition each element in `self` around `sep`. See also -------- partition

(self, sep)

Source from the content-addressed store, hash-verified

2403 return asarray(lstrip(self, chars))
2404
2405 def partition(self, sep):
2406 """
2407 Partition each element in `self` around `sep`.
2408
2409 See also
2410 --------
2411 partition
2412 """
2413 return asarray(partition(self, sep))
2414
2415 def replace(self, old, new, count=None):
2416 """

Callers 2

fillFormatMethod · 0.45
partitionFunction · 0.45

Calls 2

asarrayFunction · 0.70
partitionFunction · 0.70

Tested by

no test coverage detected