(string)
| 812 | |
| 813 | |
| 814 | def BeautifyCode(string): |
| 815 | lines = string.splitlines() |
| 816 | output = [] |
| 817 | for line in lines: |
| 818 | WrapLongLine(line, output) |
| 819 | output2 = [line.rstrip() for line in output] |
| 820 | return '\n'.join(output2) + '\n' |
| 821 | |
| 822 | |
| 823 | def ConvertFromPumpSource(src_text): |
no test coverage detected