Toggle autoindent on/off (deprecated)
(self, parameter_s = '')
| 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=''): |
nothing calls this directly
no test coverage detected