(line, comment_strs)
| 149 | |
| 150 | |
| 151 | def remove_comments(line, comment_strs): |
| 152 | for cstr in comment_strs: |
| 153 | line = line.replace(cstr, "") |
| 154 | return line |
| 155 | |
| 156 | |
| 157 | def format_multiline_comment(text, comment_type): |
no outgoing calls
no test coverage detected