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