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

Method input_splitter

IPython/core/interactiveshell.py:495–505  ·  view source on GitHub ↗

Make this available for backward compatibility (pre-7.0 release) with existing code. For example, ipykernel ipykernel currently uses `shell.input_splitter.check_complete`

(self)

Source from the content-addressed store, hash-verified

493
494 @property
495 def input_splitter(self):
496 """Make this available for backward compatibility (pre-7.0 release) with existing code.
497
498 For example, ipykernel ipykernel currently uses
499 `shell.input_splitter.check_complete`
500 """
501 from warnings import warn
502 warn("`input_splitter` is deprecated since IPython 7.0, prefer `input_transformer_manager`.",
503 DeprecationWarning, stacklevel=2
504 )
505 return self.input_transformer_manager
506
507 logstart = Bool(False, help=
508 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected