Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | flake8: Clean up complained-about unused imports | Luke Shumaker | 2017-09-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | This also adds a "# noqa: F401" comment on an unused "import lzma", which we are using it in a try/except block that is being used to check if the lzma module is importable; of course it is unused. v2: This turned out to be a little tricky. mesonbuild/modules/__init__.py had the "unused" import: from ..interpreterbase import permittedKwargs, noKwargs However, that meant that the various modules could do things like: from . import noKwargs # "." is "mesonbuild.modules" Which breaks when you remove __init__.py's "unused" import. I could have tagged that import with "# noqa: F401", but instead I chose to have each of the module import directly from "..interpreterbase" instead of ".". | ||||
* | flake8: Perform suggested whitespace/formatting changes | Luke Shumaker | 2017-09-21 | 1 | -1/+0 |
| | | | | | This only touches newlines, spaces, and (occaisionally) commas. Anything else is left for another commit. | ||||
* | Write deprecation warnings to stderr. | Jussi Pakkanen | 2017-08-02 | 1 | -1/+2 |
| | |||||
* | Print deprecation warnings on old style commands. | Jussi Pakkanen | 2017-08-02 | 1 | -2/+3 |
| | |||||
* | Turned rewriter into an internal module. | Jussi Pakkanen | 2017-08-02 | 1 | -37/+4 |
| | |||||
* | Store subdir information for each node so we can remove files set in other ↵ | Jussi Pakkanen | 2016-12-04 | 1 | -3/+3 |
| | | | | subdirectories. | ||||
* | Rewriter is not polished so print a warning. | Jussi Pakkanen | 2016-12-04 | 1 | -0/+1 |
| | |||||
* | Renamed rewriter. | Jussi Pakkanen | 2016-12-04 | 1 | -0/+63 |