return the current level of indentation as a string
(self)
| 2127 | self.rl_next_input = s |
| 2128 | |
| 2129 | def _indent_current_str(self): |
| 2130 | """return the current level of indentation as a string""" |
| 2131 | return self.input_splitter.get_indent_spaces() * ' ' |
| 2132 | |
| 2133 | #------------------------------------------------------------------------- |
| 2134 | # Things related to text completion |
nothing calls this directly
no test coverage detected