diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2012-12-16 12:31:01 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2012-12-16 12:31:01 +0100 |
| commit | 7ca076fbaffa9600db19f9f23222da977ef4f26d (patch) | |
| tree | a07b1a7cd89868df8ff711afaa7dc16633d7b0c5 | |
| parent | a9d0b35219d88341a86ff992d0d622592dcb2044 (diff) | |
Mention UNAME_RELEASE in is_special() docstring.
| -rw-r--r-- | kconfiglib.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 665bf19..e05d36f 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -2702,8 +2702,9 @@ class Symbol(Item, _HasVisibility): return self.is_defined_ def is_special(self): - """Returns True if the symbol is one of the special symbols n, m or y, - or gets its value from the environment. Otherwise, returns False.""" + """Returns True if the symbol is one of the special symbols n, m, y, or + UNAME_RELEASE, or gets its value from the environment. Otherwise, + returns False.""" return self.is_special_ def is_from_environment(self): |
