Return the absolute path to test .docx file with root name `name`.
(name: str)
| 18 | |
| 19 | |
| 20 | def docx_path(name: str): |
| 21 | """ |
| 22 | Return the absolute path to test .docx file with root name `name`. |
| 23 | """ |
| 24 | return absjoin(test_file_dir, "%s.docx" % name) |
| 25 | |
| 26 | |
| 27 | def snippet_seq(name: str, offset: int = 0, count: int = 1024): |
searching dependent graphs…