diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2020-10-30 15:46:52 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 15:46:52 -0600 |
commit | 4fe72090deb7fb7bc09bfa56c92f6b3b0967d395 (patch) | |
tree | 264fb8dec036a697595ff539ce9d3e4433224d47 /Tools/c-analyzer/c_parser/datafiles.py | |
parent | b9ee4af4c643a323779fd7076e80b29d611f2709 (diff) | |
download | cpython-4fe72090deb7fb7bc09bfa56c92f6b3b0967d395.tar.gz cpython-4fe72090deb7fb7bc09bfa56c92f6b3b0967d395.zip |
bpo-36876: Small adjustments to the C-analyzer tool. (GH-23045)
This is a little bit of clean-up, small fixes, and additional helpers prior to building an updated & accurate list of globals to eliminate.
Diffstat (limited to 'Tools/c-analyzer/c_parser/datafiles.py')
-rw-r--r-- | Tools/c-analyzer/c_parser/datafiles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/c-analyzer/c_parser/datafiles.py b/Tools/c-analyzer/c_parser/datafiles.py index 5bdb946b177..cdd69b1f9b2 100644 --- a/Tools/c-analyzer/c_parser/datafiles.py +++ b/Tools/c-analyzer/c_parser/datafiles.py @@ -92,7 +92,7 @@ def write_decls_tsv(decls, outfile, extracolumns=None, *, **kwargs ): # XXX Move the row rendering here. - _write_decls_tsv(rows, outfile, extracolumns, relroot, kwargs) + _write_decls_tsv(decls, outfile, extracolumns, relroot, kwargs) def _iter_decls_tsv(infile, extracolumns=None, relroot=None): |