Return a commented form of the given line
(line)
| 318 | return True |
| 319 | |
| 320 | def _comment_line(line): |
| 321 | "Return a commented form of the given line" |
| 322 | line = line.rstrip() |
| 323 | if line: |
| 324 | return '# '+line |
| 325 | else: |
| 326 | return '#' |
| 327 | |
| 328 | def _strip_exception_details(msg): |
| 329 | # Support for IGNORE_EXCEPTION_DETAIL. |
no test coverage detected