(line)
| 78 | |
| 79 | |
| 80 | def is_interactive_statement(line): |
| 81 | for prefix in STATEMENT_PREFIXES: |
| 82 | if line.lstrip().startswith(prefix): |
| 83 | return True |
| 84 | return False |
| 85 | |
| 86 | |
| 87 | def parse_example_parts(lines, title, current_line): |
no outgoing calls
no test coverage detected