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

Method expandtabs

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

Return a copy of each string element where all tab characters are replaced by one or more spaces. See also -------- char.expandtabs

(self, tabsize=8)

Source from the content-addressed store, hash-verified

2231 return endswith(self, suffix, start, end)
2232
2233 def expandtabs(self, tabsize=8):
2234 """
2235 Return a copy of each string element where all tab characters are
2236 replaced by one or more spaces.
2237
2238 See also
2239 --------
2240 char.expandtabs
2241
2242 """
2243 return asarray(expandtabs(self, tabsize))
2244
2245 def find(self, sub, start=0, end=None):
2246 """

Callers 9

parseStringMethod · 0.80
scanStringMethod · 0.80
parseStringMethod · 0.80
scanStringMethod · 0.80
parseStringMethod · 0.80
scanStringMethod · 0.80
parseStringMethod · 0.80
scanStringMethod · 0.80
readfortrancodeFunction · 0.80

Calls 2

expandtabsFunction · 0.85
asarrayFunction · 0.70

Tested by

no test coverage detected