summaryrefslogtreecommitdiff
path: root/kconfiglib.py
AgeCommit message (Collapse)Author
2019-07-02Make 12.12.0 releasev12.12.0Ulf Magnusson
Adds commit e5e2fe5 ("Catch EnvironmentError instead of OSError/IOError"), which fixes menuconfig.py crashes on I/O errors on Python 2. This might also improve error robustness elsewhere on Python 2 in obscure cases.
2019-07-02Catch EnvironmentError instead of OSError/IOErrorUlf Magnusson
menuconfig.py tended to crash on I/O errors on Python 2, due to forgetting to update some 'except OSError's. Catch EnvironmentError instead. EnvironmentError is a common base class of IOError and OSError on Python 2, and an alias for OSError on Python 3. Use it elsewhere too, as it might help catch obscure I/O errors on Python 2.
2019-07-01Rename Choice._get_selection_from_defaults() to _selection_from_defaults()Ulf Magnusson
Shorter and still clear.
2019-07-01Remove redundant commentUlf Magnusson
2019-07-01Remove redundant parensUlf Magnusson
2019-07-01Get rid of some STRING/INT/HEX testsUlf Magnusson
Things can be simplified a bit knowing that UNKNOWN is falsy.
2019-07-01Merge orig_type and _visited assignments in constructorsUlf Magnusson
Small optimization. We know that UNKNOWN == 0, and it's always tested for by checking truthiness rather than identity within the library, so there can't be trouble even without small integer optimization.
2019-07-01Make 12.11.0 releasev12.11.0Ulf Magnusson
Adds some small documentation improvements: - Commit b133331 ("Mention that passing subexpressions to expr_items() works") - Commit 6016156 ("Mention that the 'encoding' parameter is also used for $(shell)") - Commit 48ec584 ("Simplify eval_string() docstring re. syntax errors") - Commit e44102a ("Make MenuNode.filename documentation more accurate re. absolute paths") Some minor optimizations are included as well.
2019-07-01Improve code formatting in expression parsing functionsUlf Magnusson
Be more consistent re. continuation line indents.
2019-07-01Make MenuNode.filename documentation more accurate re. absolute pathsUlf Magnusson
An absolute path to within $srctree is turned into a relative path, and a relative path with '..' in it might be turned into an absolute path. Only whether the path is within $srctree matters.
2019-07-01Replace some if's with ifs in docsUlf Magnusson
Was meant as not-a-literal-if, but it looks confusing. Piggyback a comment nit.
2019-07-01Simplify eval_string() docstring re. syntax errorsUlf Magnusson
Syntax checking has been strict for a long time, so say "if there are syntax errors" instead of "if syntax errors are detected".
2019-07-01Mention that the 'encoding' parameter is also used for $(shell)Ulf Magnusson
2019-07-01Mention that passing subexpressions to expr_items() worksUlf Magnusson
Consistent with the other functions.
2019-07-01Use STR_TO_TRI for some n/m/y membership testsUlf Magnusson
20% faster lookup in line_profiler in _tokenize(). The test usually fails.
2019-06-28Remove stray comma in commentUlf Magnusson
2019-06-27Check for a symbol first in _finalize_tree(), and refactor a bitUlf Magnusson
Symbol is the most common case by far. Also rename _finalize_tree() to _finalize_node(), and make the explanation for what it does more specific. The recursion gets a bit tricky.
2019-06-27Remove redundant parens in set_value()Ulf Magnusson
2019-06-25Make 12.10.0 releasev12.10.0Ulf Magnusson
Adds commit 7403203 ("Make choice.set_value() no-change check work for "n"/"m"/"y" strings").
2019-06-25Make choice.set_value() no-change check work for "n"/"m"/"y" stringsUlf Magnusson
Same deal as in commit f2ac5e3 ("Make set_value() no-change check work for "n"/"m"/"y" strings"). Overlooked the similar logic for choices.
2019-06-24Make 12.9.0 releasev12.9.0Ulf Magnusson
Adds commit a7302a6 ("menuconfig/guiconfig: Use orig_defaults in symbol info").
2019-06-24Make 12.8.0 releasev12.8.0Ulf Magnusson
Adds commit 0ca8e78 ("Add {Symbol,Choice}.orig_*, corresponding to the MenuNode fields").
2019-06-24Add {Symbol,Choice}.orig_*, corresponding to the MenuNode fieldsUlf Magnusson
Getting defaults, select, implies, and ranges without dependencies propagated to conditions can be useful for symbols and choices as well, e.g. when generating standalone documentation for properties.
2019-06-24Factor out multiplication in expr_value()Ulf Magnusson
2019-06-23Remove some blank linesUlf Magnusson
2019-06-23Make 12.7.0 releasev12.7.0Ulf Magnusson
Adds commit 58c65e0 ("Make REL_TO_STR public").
2019-06-23Make REL_TO_STR publicUlf Magnusson
Generally useful, and not likely to need any internal hackery.
2019-06-23Shorten __repr__() functions a bitUlf Magnusson
Do 'add = fields.append'. Pointless as an optimization, but shaves some lines, and obvious in context. Also add test coverage for __repr__() for string symbols with user values.
2019-06-23Whitespace nitUlf Magnusson
2019-06-22Shorten choice parsing a tiny bitUlf Magnusson
2019-06-21Make 12.6.0 releasev12.6.0Ulf Magnusson
Makes set_value() smarter about saving redundant work, in commit f2ac5e3 ("Make set_value() no-change check work for "n"/"m"/"y" strings").
2019-06-21Clarify that set_value() takes a string for int/hexUlf Magnusson
Worth pointing out explicitly.
2019-06-21Make set_value() no-change check work for "n"/"m"/"y" stringsUlf Magnusson
Convert "n"/"m"/"y" to 0/1/2 earlier, so that e.g. sym.set_value("y") is recognized as a no-op when sym.user_value == 2. This also helps when loading several configuration files that assign some of the same symbols, because load_config() calls set_value() with "n"/"m"/"y". This could also cut down on the number of times a particular warning is displayed when loading lots of overlapping configuration files.
2019-06-21Clean up _load_config() a bitUlf Magnusson
- Reorganize symbol fetching to remove some duplicated _undef_assign() calls - Move duplicated assignment warning generation into an _assigned_twice() helper function
2019-06-15Make 12.5.0 releasev12.5.0Ulf Magnusson
Adds commit 0c79d23 ("menuconfig: Be silent when changing LC_CTYPE to a UTF-8 locale").
2019-06-15Move .close() to a better spot in _leave_file()Ulf Magnusson
2019-06-13Hint towards sym.config_string where _write_to_conf is usedUlf Magnusson
It's pretty subtle that sym.config_string can be used instead of the internal sym._write_to_conf variable in client code. Mention it in comments near where _write_to_conf is used. Seen client code access _write_to_conf a few times now. No plans to remove it though, so it'll most likely keep working.
2019-06-09Replace os.environ.get() with os.getenv()Ulf Magnusson
Same behavior, simpler.
2019-06-09Make 12.4.0 releasev12.4.0Ulf Magnusson
Adds a small error message improvement, in commit 49831dd ("Give the 'source ...' line being parsed when a file can't be opened").
2019-06-09Move macro-related $ later in regexesUlf Magnusson
Bit cleaner-looking.
2019-06-09Give the 'source ...' line being parsed when a file can't be openedUlf Magnusson
Helpful when env. variables are involved. Previously only shown when the file couldn't be found.
2019-06-09Move self._line setting into _tokenize()Ulf Magnusson
Factors out some common code.
2019-06-07Make 12.3.0 releasev12.3.0Ulf Magnusson
Adds a genconfig feature that can be used to avoid needless reconfiguration, and improves the dumpvars output format. - Commit dd1be54 ("genconfig: Support generating lists of files and environment vars.") - Commit f503ea3 ("dumpvars: Make the output format copy-pasteable")
2019-06-07genconfig: Support generating lists of files and environment vars.Ulf Magnusson
This can be useful to avoid needless reconfiguration, by checking if any Kconfig file or environment variable has changed value before running genconfig.
2019-06-06Make 12.2.1 releasev12.2.1Ulf Magnusson
Adds commit 443e6bb ("menuconfig: Fix help display on Python 2").
2019-06-06Make 12.2.0 releasev12.2.0Ulf Magnusson
Do the opposite of what other people are doing and make menuconfig.py Python 2-compatible. Turns out it's not that tricky after all, and it makes everything consistently Python 2/3-compatible and streamlines things. - Commit 41b5891 ("menuconfig: Get rid of 'nonlocal'") - Commit b2e211d ("menuconfig: Fall back on getch() when get_wch() isn't available") - Commit c3162be ("menuconfig: Only decode curses.erasechar() on Python 3") - Commit fe6ed99 ("menuconfig: Import print_function for Python 2 compatibility") - Commit c209188 ("menuconfig: Have hashbang point to 'python' instead of 'python3'") - Commit d577865 ("Remove Python 3 menuconfig special-casing from Makefile patch") - Commit 319f7f0 ("Update various comments now that menuconfig is Python 2-compatible") - Commit 5fbd70e ("Update setup.py now that menuconfig is Python 2-compatible") Also investigate exactly what the Python version requirements are and tweak and document things a bit: - Commit e0baa79 ("Tweak python_requires to 2.7/3.2+") - Commit 3a772a6 ("Add a section on version compatibility to the README")
2019-06-06Update various comments now that menuconfig is Python 2-compatibleUlf Magnusson
2019-06-04Make 12.1.0 releasev12.1.0Ulf Magnusson
Adds commit 22f2778 ("Mention that the load_config() message is different for replace=False")
2019-06-04Mention that the load_config() message is different for replace=FalseUlf Magnusson
Handy to know when writing merging utilities.
2019-06-03Get rid of bare 'except:' in _save_old()Ulf Magnusson
Catch Exception instead, which avoids catching things like keyboard interrupts.