Return a commented form of the given line
(line)
| 339 | return True |
| 340 | |
| 341 | def _comment_line(line): |
| 342 | "Return a commented form of the given line" |
| 343 | line = line.rstrip() |
| 344 | if line: |
| 345 | return '# '+line |
| 346 | else: |
| 347 | return '#' |
| 348 | |
| 349 | def _strip_exception_details(msg): |
| 350 | # Support for IGNORE_EXCEPTION_DETAIL. |
no test coverage detected
searching dependent graphs…