Helper method for dealing with multiline strings.
(string, indent=0)
| 1 | import textwrap |
| 2 | |
| 3 | def s(string, indent=0): |
| 4 | '''Helper method for dealing with multiline strings.''' |
| 5 | return textwrap.indent(textwrap.dedent(string), ' '*indent) |
| 6 | |
| 7 | def make_safe_call(type, rust_function, args): |
| 8 | prefix = [] |
no outgoing calls
no test coverage detected