Transformers, excluding logical line transformers if we're in a Python line.
(self)
| 592 | |
| 593 | @property |
| 594 | def transforms_in_use(self): |
| 595 | """Transformers, excluding logical line transformers if we're in a |
| 596 | Python line.""" |
| 597 | t = self.physical_line_transforms[:] |
| 598 | if not self.within_python_line: |
| 599 | t += [self.assemble_logical_lines] + self.logical_line_transforms |
| 600 | return t + [self.assemble_python_lines] + self.python_line_transforms |
| 601 | |
| 602 | def reset(self): |
| 603 | """Reset the input buffer and associated state.""" |
nothing calls this directly
no outgoing calls
no test coverage detected