Return a commented form of the given line
(line)
| 345 | return True |
| 346 | |
| 347 | def _comment_line(line): |
| 348 | "Return a commented form of the given line" |
| 349 | line = line.rstrip() |
| 350 | if line: |
| 351 | return '# '+line |
| 352 | else: |
| 353 | return '#' |
| 354 | |
| 355 | def _strip_exception_details(msg): |
| 356 | # Support for IGNORE_EXCEPTION_DETAIL. |
no test coverage detected