(fh, line)
| 95 | |
| 96 | |
| 97 | def _writeln(fh, line): |
| 98 | # Ending lines with a % prevents TeX from inserting spurious spaces |
| 99 | # (https://tex.stackexchange.com/questions/7453). |
| 100 | fh.write(line) |
| 101 | fh.write("%\n") |
| 102 | |
| 103 | |
| 104 | def _escape_and_apply_props(s, prop): |
no test coverage detected
searching dependent graphs…