diff options
author | Mats Wichmann <mats@linux.com> | 2021-11-18 18:21:36 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2021-11-18 18:21:36 (GMT) |
commit | 0650599bddf75bbb77a6f35029976b84056bc471 (patch) | |
tree | 9c753cfae43b8678532375faaae4f0fd8b8f8db0 /SCons/Conftest.py | |
parent | 8eaf585a893757e68c9e4a6e25d375021fa5eab7 (diff) | |
download | SCons-0650599bddf75bbb77a6f35029976b84056bc471.zip SCons-0650599bddf75bbb77a6f35029976b84056bc471.tar.gz SCons-0650599bddf75bbb77a6f35029976b84056bc471.tar.bz2 |
Doc tweaks: make Sphinx happier [ci skip]
These two files clean up some problems with Sphinx building the docs:
in Conftest, the reference "HAVE_" was being recognized as a link
(ReST syntax), so the underscore is now escaped.
In Variables, the Add method docstring was still causing problems with
*args and **kwargs (this has been a long-standing problem), so reorganized
and I think actually fixed this time.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons/Conftest.py')
-rw-r--r-- | SCons/Conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SCons/Conftest.py b/SCons/Conftest.py index 908713c..755020a 100644 --- a/SCons/Conftest.py +++ b/SCons/Conftest.py @@ -83,7 +83,7 @@ context.vardict context.havedict Dictionary holding results from the tests that are to be used - inside a program. Names often start with "HAVE_". These are zero + inside a program. Names often start with "HAVE\_". These are zero (feature not present) or one (feature present). Other variables may have any value, e.g., "PERLVERSION" can be a number and "SYSTEMNAME" a string. |