summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2015-06-20 20:39:34 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2015-06-20 20:40:49 +0200
commit1d20379f8815264e06119a6237630f17dd3fb83d (patch)
tree805c0c22e58953ac1fe6740bc2b8ed4fa6b5c2b4 /kconfiglib.py
parent35fe72c531b9e0d03684512583beec50893b4fa6 (diff)
Explain line_feeder in _parse_block()'s docstring.
Diffstat (limited to 'kconfiglib.py')
-rw-r--r--kconfiglib.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 5604fb2..151a521 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -612,6 +612,9 @@ class Config(object):
"""Parses a block, which is the contents of either a file or an if,
menu, or choice statement. Returns a list with the Items in the block.
+ line_feeder: A _FileFeed instance feeding lines from a file. The
+ Kconfig language is line-based in practice.
+
end_marker: The token that ends the block, e.g. T_ENDIF ("endif") for
ifs. None for files.