(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS)
| 347 | # end def reformat_filter |
| 348 | |
| 349 | def complete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): |
| 350 | input = io.StringIO(source) |
| 351 | output = io.StringIO() |
| 352 | pi = PythonIndenter(input, output, stepsize, tabsize, expandtabs) |
| 353 | pi.complete() |
| 354 | return output.getvalue() |
| 355 | # end def complete_string |
| 356 | |
| 357 | def delete_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = EXPANDTABS): |
no test coverage detected