(self, output, max_width=79, newline='\n', max_seq_length=MAX_SEQ_LENGTH)
| 183 | """ |
| 184 | |
| 185 | def __init__(self, output, max_width=79, newline='\n', max_seq_length=MAX_SEQ_LENGTH): |
| 186 | self.output = output |
| 187 | self.max_width = max_width |
| 188 | self.newline = newline |
| 189 | self.max_seq_length = max_seq_length |
| 190 | self.output_width = 0 |
| 191 | self.buffer_width = 0 |
| 192 | self.buffer = deque() |
| 193 | |
| 194 | root_group = Group(0) |
| 195 | self.group_stack = [root_group] |
| 196 | self.group_queue = GroupQueue(root_group) |
| 197 | self.indentation = 0 |
| 198 | |
| 199 | def _break_one_group(self, group): |
| 200 | while group.breakables: |
nothing calls this directly
no test coverage detected