diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2012-12-11 15:20:13 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2012-12-11 15:20:13 +0100 |
| commit | 126340cd5c3675dd5b1522787bb681a47577f0b8 (patch) | |
| tree | c0a384db858aaa832a96fa7bf9a77d2e9fba2301 | |
| parent | e32946d785274c4d33b63a7748ca6e1f733de331 (diff) | |
Clarify Symbol.get_value().
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 37087bd..5d28d04 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -2245,7 +2245,8 @@ class Symbol(Item, _HasVisibility): # def get_value(self): - """Calculate and return the value of the symbol.""" + """Calculate and return the value of the symbol. See also + Symbol.set_user_value().""" if self.cached_value is not None: return self.cached_value |
