summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2012-12-09 02:37:26 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2012-12-09 02:38:56 +0100
commit9e9b165e1f87fdfc234f2b0c1557d7622ff0ceea (patch)
tree45e4b737fa992b47ae7bc5a1646d40ba73443a02 /kconfiglib.py
parentbe7706762edce04aaaf0a12d70f1721a61ddd83c (diff)
Clarify _get_dependent() documentation.
Diffstat (limited to 'kconfiglib.py')
-rw-r--r--kconfiglib.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 9be4eae..7dfdd06 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -2928,8 +2928,10 @@ class Symbol(Item, _HasVisibility):
.format(self.type))
def _get_dependent(self):
- """Returns the list of symbols that should be invalidated if the value
- of the symbol changes."""
+ """Returns the list of symbols that should be invalidated if the user
+ value of the symbol changes, because they might be affected by the
+ change. Note that this is an internal API -- it's probably of limited
+ usefulness to clients."""
if self.cached_deps is not None:
return self.cached_deps