(self, n)
| 1510 | # Make string that displays as n leading blanks. |
| 1511 | |
| 1512 | def _make_blanks(self, n): |
| 1513 | if self.usetabs: |
| 1514 | ntabs, nspaces = divmod(n, self.tabwidth) |
| 1515 | return '\t' * ntabs + ' ' * nspaces |
| 1516 | else: |
| 1517 | return ' ' * n |
| 1518 | |
| 1519 | # Delete from beginning of line to insert point, then reinsert |
| 1520 | # column logical (meaning use tabs if appropriate) spaces. |
no outgoing calls
no test coverage detected