Home | History | Annotate | Download | only in idlelib

Lines Matching refs:ntabs

1439                 ntabs, nspaces = divmod(effective, tabwidth)
1440 lines[pos] = '\t' * ntabs + ' ' * nspaces + line[raw:]
1516 ntabs, nspaces = divmod(n, self.tabwidth)
1517 return '\t' * ntabs + ' ' * nspaces