diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-07-01 01:59:12 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-07-01 01:59:12 +0200 |
| commit | b13333194ecb4f413de40fc9e31d1aa0ed9d9df6 (patch) | |
| tree | e1e032be23b54a08802fe332d909d320a3966fa3 | |
| parent | 8aa611269f1a0c4ab0d18e65f1c0007a42a5800b (diff) | |
Mention that passing subexpressions to expr_items() works
Consistent with the other functions.
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 944d153..de3f959 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -5948,8 +5948,9 @@ def expr_items(expr): """ Returns a set() of all items (symbols and choices) that appear in the expression 'expr'. - """ + Passing subexpressions of expressions to this function works as expected. + """ res = set() def rec(subexpr): |
