Merge "Add warning about interpolating values from groups"

This commit is contained in:
Jenkins 2014-06-19 19:14:56 +00:00 committed by Gerrit Code Review
commit f18797ab7d
2 changed files with 13 additions and 1 deletions

View File

@ -232,7 +232,16 @@ Option values may reference other values using PEP 292 string substitution::
help='Connection string for SQL database.'),
]
Note that interpolation can be avoided by using `$$`.
.. note::
Interpolation can be avoided by using `$$`.
.. warning::
Interpolation using the values of options in groups is not yet
supported. The interpolated option must be in the DEFAULT group
(i.e., ``"$state_path"`` works but ``"$database.state_path"`` does
not).
Special Handling Instructions
-----------------------------

View File

@ -19,6 +19,9 @@ commands =
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
[flake8]
show-source = True
ignore = H305