diff options
author | Mats Wichmann <mats@linux.com> | 2020-05-30 13:33:27 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-05-30 16:58:49 (GMT) |
commit | 0f89d1bacbfb8f3983a705c1a507916e9260f93b (patch) | |
tree | 6343a6d294c2fe967d632f463065e10a76c24484 /SCons/cpp.py | |
parent | 19f6d2c0d64928e87383a76146981dbfee1fee1c (diff) | |
download | SCons-0f89d1bacbfb8f3983a705c1a507916e9260f93b.zip SCons-0f89d1bacbfb8f3983a705c1a507916e9260f93b.tar.gz SCons-0f89d1bacbfb8f3983a705c1a507916e9260f93b.tar.bz2 |
Docstring changes from Sphinx conversion [ci skip]
These changes are prompted by complaints Sphinx makes about
existing docstrings; split from the Sphinx-build PR to make
for easier reviewing.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons/cpp.py')
-rw-r--r-- | SCons/cpp.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/SCons/cpp.py b/SCons/cpp.py index 1113be5..0811c71 100644 --- a/SCons/cpp.py +++ b/SCons/cpp.py @@ -603,8 +603,7 @@ class PreProcessor: This handles recursive expansion of values without "" or <> surrounding the name until an initial " or < is found, to handle - #include FILE - where FILE is a #define somewhere else. + #include FILE where FILE is a #define somewhere else. """ s = t[1].strip() while not s[0] in '<"': |