(variables, outfile, relroot=fsutil.USE_CWD)
| 115 | |
| 116 | |
| 117 | def write_ignored(variables, outfile, relroot=fsutil.USE_CWD): |
| 118 | raise NotImplementedError |
| 119 | if relroot and relroot is not fsutil.USE_CWD: |
| 120 | relroot = os.path.abspath(relroot) |
| 121 | reason = '???' |
| 122 | #if not isinstance(varid, DeclID): |
| 123 | # varid = getattr(varid, 'parsed', varid).id |
| 124 | decls = (d.fix_filename(relroot, fixroot=False) for d in decls) |
| 125 | _tables.write_table( |
| 126 | outfile, |
| 127 | IGNORED_HEADER, |
| 128 | sep='\t', |
| 129 | rows=(r.render_rowdata() + (reason,) for r in decls), |
| 130 | ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…