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

Method rstrip

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

For each element in `self`, return a copy with the trailing characters removed. See also -------- char.rstrip

(self, chars=None)

Source from the content-addressed store, hash-verified

2484 return rsplit(self, sep, maxsplit)
2485
2486 def rstrip(self, chars=None):
2487 """
2488 For each element in `self`, return a copy with the trailing
2489 characters removed.
2490
2491 See also
2492 --------
2493 char.rstrip
2494
2495 """
2496 return asarray(rstrip(self, chars))
2497
2498 def split(self, sep=None, maxsplit=None):
2499 """

Callers 11

__getitem__Method · 0.45
_extendLineFunction · 0.45
recurserFunction · 0.45
__call__Method · 0.45
extras.pyFile · 0.45
is_free_formatFunction · 0.45
_hash_filesMethod · 0.45
runMethod · 0.45
default_doc_funcFunction · 0.45
assert_string_equalFunction · 0.45
readfortrancodeFunction · 0.45

Calls 2

rstripFunction · 0.85
asarrayFunction · 0.70

Tested by

no test coverage detected