>>>>> "Tom" == Tom Tromey <tro...@adacore.com> writes:
Tom> This short series adds configuration files for black ("opinionated" Tom> code formatter), isort (import sorter) and flake8 (Python lint) to Tom> libstdc++. Tom> I marked it as RFC since sometimes people don't like black's output. Tom> In gdb we use it -- at first I found some of its decisions a little Tom> odd, but overall it's nice not to have to review for or worry about Tom> the minitia of code formatting. FWIW in gdb we recently updated our .pre-commit-config.yaml to automatically run all three of these tools. What this means is that it's now very easy for developers to ensure that the Python code in the tree remains clean -- is correctly formatted, passes flake8 checking, etc. The tool is opt-in but also extremely easy to use. Anyway, if you're at all interested, I could refresh this series to enable flake8 cleanliness and then add a .pre-commit-config.yaml as well. thanks, Tom