MCPcopy Index your code
hub / github.com/RustPython/RustPython / expandtabs

Method expandtabs

Lib/collections/__init__.py:1484–1485  ·  view source on GitHub ↗
(self, tabsize=8)

Source from the content-addressed store, hash-verified

1482 return self.data.endswith(suffix, start, end)
1483
1484 def expandtabs(self, tabsize=8):
1485 return self.__class__(self.data.expandtabs(tabsize))
1486
1487 def find(self, sub, start=0, end=_sys.maxsize):
1488 if isinstance(sub, UserString):

Callers 11

indentsizeFunction · 0.45
cleandocFunction · 0.45
getcommentsFunction · 0.45
preformatMethod · 0.45
parseMethod · 0.45
expand_tabsMethod · 0.45
write_results_fileMethod · 0.45
_munge_whitespaceMethod · 0.45
test_expandtabsMethod · 0.45
test_indentMethod · 0.45

Calls 1

__class__Method · 0.45

Tested by 4

parseMethod · 0.36
test_expandtabsMethod · 0.36
test_indentMethod · 0.36