summaryrefslogtreecommitdiff
path: root/kconfiglib.py
AgeCommit message (Expand)Author
2015-06-05_internal_error() nit.Ulf Magnusson
2015-06-05Format some stuff consistently.Ulf Magnusson
2015-06-05Use the 'get' method of 'keyword' directly.Ulf Magnusson
2015-06-05Improve tokenization performance by removing a single character.Ulf Magnusson
2015-06-05Restructure and simplify parts of the tokenizer.Ulf Magnusson
2015-06-05Fix hang when tokenizing some invalid expressions.Ulf Magnusson
2015-06-04Clean up parse error handling.Ulf Magnusson
2015-06-04Clean up tokenization error handling.Ulf Magnusson
2015-06-04Documentation nit.Ulf Magnusson
2015-06-04Refactor and optimize _indentation().Ulf Magnusson
2015-06-04Refactor and optimize _strip_quotes().Ulf Magnusson
2015-06-04Replace _strip_trailing_slash() with rstrip().Ulf Magnusson
2015-06-04Refactor _get_lines().Ulf Magnusson
2015-06-04Note that _FileFeed joins lines ending in \.Ulf Magnusson
2015-06-04Let _FileFeed fetch the lines from the file.Ulf Magnusson
2015-06-04Order _parse_block() cases by frequency.Ulf Magnusson
2015-06-04Order _parse_properties() cases by frequency.Ulf Magnusson
2015-06-04Check for AND before OR in _eval_expr_2().Ulf Magnusson
2015-06-04Small regex-related optimization.Ulf Magnusson
2015-06-04Warning formatting nit.Ulf Magnusson
2015-06-04Consistently use new-style classes.Ulf Magnusson
2015-06-02Remove Psyco support.Ulf Magnusson
2015-06-02Obfuscate email inside kconfiglib.py.Ulf Magnusson
2015-06-01Use ulfalizer@gmail.com for feedback.Ulf Magnusson
2015-05-31Do a small documentation cleanup pass.Ulf Magnusson
2015-05-29Fix typo in warning.Ulf Magnusson
2015-05-29Only warn for 'option modules' on non-MODULES symbols.Ulf Magnusson
2015-05-25Allow digits in $-references to symbols.Ulf Magnusson
2015-05-25Fix typo in docs.Ulf Magnusson
2015-05-24Add warning related to get_defconfig_filename().Ulf Magnusson
2015-03-13Hint that modules are still supported despite warnings.Ulf Magnusson
2015-03-12Add Symbol.is_allnoconfig_y()Philip Craig
2015-03-12Statements in choices inherit menu/if depsPhilip Craig
2015-02-16Warn about and ignore the "allnoconfig_y" Kconfig optionJakub Sitnicki
2013-08-07Add Symbol and Choice interfaces for getting prompt strings.Ulf Magnusson
2012-12-19Use regexes instead of frozensets to lex ids/keywords.Ulf Magnusson
2012-12-18Flesh out Symbol docstring.Ulf Magnusson
2012-12-18Flesh out Config docstring.Ulf Magnusson
2012-12-18Remove redundant invalidation from load_config().Ulf Magnusson
2012-12-18Properly unescape .config string assignments.Ulf Magnusson
2012-12-18Simplify load_config() a bit.Ulf Magnusson
2012-12-18Escape \ and " when writing .config entries for strings.Ulf Magnusson
2012-12-17Tighten up string literal parsing a bit more.Ulf Magnusson
2012-12-17Fix comment re. fast path.Ulf Magnusson
2012-12-17Small simplification.Ulf Magnusson
2012-12-17Add a fast path for string literal lexing.Ulf Magnusson
2012-12-16Use 'while 1' instead of 'while True'.Ulf Magnusson
2012-12-16Use | and |= instead of set.union() and set.update().Ulf Magnusson
2012-12-16Mention UNAME_RELEASE in is_special() docstring.Ulf Magnusson
2012-12-16Remove redundant elif.Ulf Magnusson