Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-08-31 | pylint: turn on superflous-parens | Dylan Baker | 1 | -5/+5 | |
We have a lot of these. Some of them are harmless, if unidiomatic, such as `if (condition)`, others are potentially dangerous `assert(...)`, as `assert(condtion)` works as expected, but `assert(condition, message)` will result in an assertion that never triggers, as what you're actually asserting is `bool(tuple[2])`, which will always be true. | |||||
2021-06-29 | fix: Always explicitly set encoding for text files (fixes #8263) | Daniel Mensinger | 1 | -3/+3 | |
2021-03-04 | mass rewrite of string formatting to use f-strings everywhere | Eli Schwartz | 1 | -1/+1 | |
performed by running "pyupgrade --py36-plus" and committing the results | |||||
2020-11-20 | use real pathlib module | Dylan Baker | 1 | -1/+1 | |
We added the _pathlib module to work around defeciencies in python 3.5's implementation, since we now rely on 3.6 lets drop this | |||||
2020-10-04 | pathlib: Fix resolve() by overriding it in Python 3.5 | Daniel Mensinger | 1 | -1/+2 | |
2020-10-04 | cmake: switch to pathlib (fixes #7322) | Daniel Mensinger | 1 | -46/+43 | |
2020-09-28 | typing: fully annotate cmake.fileapi | Daniel Mensinger | 1 | -10/+14 | |
2020-01-08 | types: import typing as T (fixes #6333) | Daniel Mensinger | 1 | -7/+7 | |
2019-11-19 | ci: Add CI command to include text files in the CI log | Daniel Mensinger | 1 | -0/+2 | |
2019-11-19 | cmake: Handle CMake system include dirs (closes #6079) | Daniel Mensinger | 1 | -3/+1 | |
2019-11-06 | Fix typos found by codespell | Wolfgang Stöggl | 1 | -2/+2 | |
- Typos were found by codespell v1.16.0 | |||||
2019-10-20 | cmake: Add CMake file API support | Daniel Mensinger | 1 | -0/+318 | |
The file API will automatically be used when CMake >= 3.14 is detected. This new API is meant as a replacement for the now deprecated CMake server API. The new API (mostly) provides the same information in a different format. Thus only a slight bit of refactoring was necessary to implement this new backend |