MCPcopy Create free account
hub / github.com/ipython/ipython / transforms_in_use

Method transforms_in_use

IPython/core/inputsplitter.py:594–600  ·  view source on GitHub ↗

Transformers, excluding logical line transformers if we're in a Python line.

(self)

Source from the content-addressed store, hash-verified

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."""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected