input splitter depreciation
Offen
- Vorherrschende Sprache
- Python
- Sterne
- 734
- Forks
- 412
- Ø Merge
- 1 T. 5 Std.
- Gemergte PRs (30 T.)
- 8
Beschreibung
I had a constant warning using python within spyder4 console:
> DeprecationWarning: `input_splitter` is deprecated since IPython 7.0, prefer `input_transformer_manager`.
and ended up manually replacing l.454 of ipkernel.py
`status, indent_spaces = self.shell.input_splitter.check_complete(code)`
with
`status, indent_spaces = self.shell.input_transformer_manager.check_complete(code)`
to solve my problem.
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.