summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-09-04 21:35:16 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-09-04 21:35:16 +0200
commit0591946c28107001f4c5ca725405b8c2270be0dd (patch)
treeafc10a38ef1161f878777f05f9ffd813be02daf8
parenta092257a49ed7850913cf53e474f4c8dd175c94b (diff)
Fix outdated comment re. $() yielding non-const symbols
This is handled earlier in _tokenize() now.
-rw-r--r--kconfiglib.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index b6e534c..4dbb530 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -1812,8 +1812,7 @@ class Kconfig(object):
i = match.end()
else:
- # Neither a keyword nor a non-const symbol (except
- # $()-expansion might still yield a non-const symbol).
+ # Neither a keyword nor a non-const symbol
# We always strip whitespace after tokens, so it is safe to
# assume that s[i] is the start of a token here.