diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-10-03 17:03:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 17:03:49 (GMT) |
commit | 93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e (patch) | |
tree | 7d119733b0de07024169d68ac5af8ac63422023f /Tools/c-analyzer/c_parser/preprocessor | |
parent | 5ba61f488da2e092a81c3d126c5827dad6ab2006 (diff) | |
download | cpython-93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e.zip cpython-93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e.tar.gz cpython-93242d7a2ad8c22f72ff84b63ed9046d32f6aa8e.tar.bz2 |
[3.10] Remove trailing spaces (GH-28709)
Diffstat (limited to 'Tools/c-analyzer/c_parser/preprocessor')
-rw-r--r-- | Tools/c-analyzer/c_parser/preprocessor/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/c-analyzer/c_parser/preprocessor/__init__.py b/Tools/c-analyzer/c_parser/preprocessor/__init__.py index f206f69..8da4d8c 100644 --- a/Tools/c-analyzer/c_parser/preprocessor/__init__.py +++ b/Tools/c-analyzer/c_parser/preprocessor/__init__.py @@ -91,7 +91,7 @@ def get_preprocessor(*, macros = list(_resolve_file_values(filename, file_macros)) if file_incldirs: incldirs = [v for v, in _resolve_file_values(filename, file_incldirs)] - + def preprocess(**kwargs): if file_macros and 'macros' not in kwargs: kwargs['macros'] = macros |