(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS)
| 355 | # end def complete_string |
| 356 | |
| 357 | def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): |
| 358 | input = io.StringIO(source) |
| 359 | output = io.StringIO() |
| 360 | pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs) |
| 361 | pi.delete() |
| 362 | return output.getvalue() |
| 363 | # end def delete_string |
| 364 | |
| 365 | def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): |
no test coverage detected