diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2017-10-01 08:33:15 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2017-10-01 08:34:28 +0200 |
| commit | 009ce631d0ba2978f51d15b0b250276a078707e8 (patch) | |
| tree | e2cdd7ad1f83c24ddc7497e8c0d8ec1787ad1b8a | |
| parent | 80279c463725971430b8f9410040966ed2e2b303 (diff) | |
Mention ranges too in comment
Also be a bit more consistent in how property variables are ordered.
| -rw-r--r-- | kconfiglib.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 7f76c61..c111c68 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -1076,7 +1076,8 @@ class Config(object): break # Done parsing properties. Now add the new - # prompts/defaults/selects/implies, with dependencies propagated. + # prompts/defaults/selects/implies/ranges, with dependencies + # propagated. # Save original dependencies from enclosing menus and ifs stmt._deps_from_containing = deps @@ -2518,9 +2519,9 @@ class Symbol(Item): # dependencies from parents propagated to them self._orig_prompts = [] self._orig_def_exprs = [] - self._orig_ranges = [] self._orig_selects = [] self._orig_implies = [] + self._orig_ranges = [] # Dependencies inherited from containing menus and ifs self._deps_from_containing = None |
