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

Method autoindent

IPython/terminal/magics.py:81–84  ·  view source on GitHub ↗

Toggle autoindent on/off (deprecated)

(self, parameter_s = '')

Source from the content-addressed store, hash-verified

79
80 @line_magic
81 def autoindent(self, parameter_s = ''):
82 """Toggle autoindent on/off (deprecated)"""
83 self.shell.set_autoindent()
84 print("Automatic indentation is:",['OFF','ON'][self.shell.autoindent])
85
86 @line_magic
87 def cpaste(self, parameter_s=''):

Callers

nothing calls this directly

Calls 1

set_autoindentMethod · 0.80

Tested by

no test coverage detected