MCPcopy Index your code
hub / github.com/python/cpython / expandtabs

Method expandtabs

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

Source from the content-addressed store, hash-verified

1522 return self.data.endswith(suffix, start, end)
1523
1524 def expandtabs(self, tabsize=8):
1525 return self.__class__(self.data.expandtabs(tabsize))
1526
1527 def find(self, sub, start=0, end=_sys.maxsize):
1528 if isinstance(sub, UserString):

Callers 15

indentsizeFunction · 0.45
cleandocFunction · 0.45
getcommentsFunction · 0.45
write_bytesMethod · 0.45
preformatMethod · 0.45
parseMethod · 0.45
expand_tabsMethod · 0.45
write_results_fileMethod · 0.45
_munge_whitespaceMethod · 0.45
reformat_paragraphFunction · 0.45

Calls 1

__class__Method · 0.45

Tested by 1

parseMethod · 0.36