(decls, outfile, fmt=None, *, backup=False)
| 52 | |
| 53 | |
| 54 | def write_decls(decls, outfile, fmt=None, *, backup=False): |
| 55 | if fmt is None: |
| 56 | fmt = _get_format(infile) |
| 57 | _, write_all = _get_format_handlers('decls', fmt) |
| 58 | write_all(decls, outfile, backup=backup) |
| 59 | |
| 60 | |
| 61 | ############################# |
nothing calls this directly
no test coverage detected
searching dependent graphs…