(self)
| 181 | # return length of longest contiguous run of spaces (whether or not |
| 182 | # preceding a tab) |
| 183 | def longest_run_of_spaces(self): |
| 184 | count, trailing = self.norm |
| 185 | return max(len(count)-1, trailing) |
| 186 | |
| 187 | def indent_level(self, tabsize): |
| 188 | # count, il = self.norm |
no test coverage detected