Age | Commit message (Expand) | Author | Files | Lines |
2022-02-16 | fix malformed warning to print the way it was meant to print | Eli Schwartz | 1 | -9/+5 |
2022-02-16 | fix a couple misuses of textwrap.dedent | Eli Schwartz | 1 | -1/+1 |
2022-01-10 | first pass at migrating to dataclasses | Eli Schwartz | 1 | -14/+21 |
2021-08-31 | pylint: turn on superflous-parens | Dylan Baker | 1 | -5/+5 |
2021-08-31 | pylint: enable consider-iterating-dictionary | Dylan Baker | 1 | -1/+1 |
2021-03-10 | Add support for basic format strings | Laurin-Luis Lehning | 1 | -2/+13 |
2021-03-04 | mass rewrite of string formatting to use f-strings everywhere | Eli Schwartz | 1 | -6/+6 |
2020-09-08 | typing: fix code review | Daniel Mensinger | 1 | -1/+1 |
2020-09-08 | typing: fully annotate mparser.py | Daniel Mensinger | 1 | -14/+25 |
2020-05-23 | ast: Add AST JSON printer | Daniel Mensinger | 1 | -7/+5 |
2020-04-04 | mparser: fix precedence of arithmetic operators | Andrei Alexeyev | 1 | -27/+33 |
2020-03-02 | types: Remove redundant __init__() -> None annotation | Daniel Mensinger | 1 | -26/+26 |
2020-03-02 | types: Use import typing as T | Daniel Mensinger | 1 | -20/+19 |
2020-03-02 | review: Initial fixup | Daniel Mensinger | 1 | -28/+31 |
2020-03-02 | types: Annotate the AST visitors | Daniel Mensinger | 1 | -0/+5 |
2020-03-02 | types: Annotate mparser.py | Daniel Mensinger | 1 | -233/+219 |
2020-02-28 | Rename 'subdir' -> 'filename' in location objects | Jon Turney | 1 | -35/+35 |
2019-12-05 | lgtm: Fix redundant code | Daniel Mensinger | 1 | -1/+0 |
2019-12-04 | dict: Fully evaluate keys | Xavier Claessens | 1 | -13/+1 |
2019-12-03 | mparser.py: actually check the type of key variable, not its value | Marc Herbert | 1 | -1/+1 |
2019-11-12 | Fixed issue that the key's value type wasn't checked correctly. | fchin | 1 | -3/+4 |
2019-11-12 | Adding dictionary entry using string variable as key. | franczc | 1 | -8/+12 |
2019-04-29 | Fix flake8-bugbear warnings | Daniel Mensinger | 1 | -1/+1 |
2019-04-28 | consistent invalid escape sequence behaviour | Jon Turney | 1 | -6/+6 |
2019-03-03 | rewriter: Use mparser to detect the end of some nodes | Daniel Mensinger | 1 | -6/+12 |
2019-03-02 | Fix ternary in thing (#5007) | Dylan Baker | 1 | -2/+3 |
2019-02-16 | Fixed flake8 | Daniel Mensinger | 1 | -1/+1 |
2019-02-16 | Can now find the assignment node of a value | Daniel Mensinger | 1 | -4/+6 |
2019-01-29 | pep8 py37 | Michael Hirsch, Ph.D | 1 | -1/+1 |
2019-01-22 | Fixed line and column numbers for dict and array nodes | Daniel Mensinger | 1 | -8/+8 |
2019-01-22 | Basic AST visitor pattern | Daniel Mensinger | 1 | -21/+29 |
2019-01-05 | parser: Fix line continuation outside of (), [] or {} | Xavier Claessens | 1 | -1/+5 |
2018-10-04 | Interpreter: Add 'continue' and 'break' keywords | Xavier Claessens | 1 | -2/+12 |
2018-10-04 | Interpreter: Add "in" and "not in" operators | Xavier Claessens | 1 | -3/+8 |
2018-07-27 | Warn for future keyword (#3908) | Xavier Claessens | 1 | -0/+5 |
2018-05-23 | Add support for octal and binary int literals. | Filipe Brandenburger | 1 | -6/+2 |
2018-05-21 | dict: fix CI issues | Mathieu Duponchelle | 1 | -1/+1 |
2018-05-20 | dict: address review comments | Mathieu Duponchelle | 1 | -8/+9 |
2018-05-20 | Add new built-in type, dict | Mathieu Duponchelle | 1 | -4/+53 |
2018-04-21 | Remove escaping for triple-quoted strings | Niklas Claesson | 1 | -16/+0 |
2018-04-17 | Exit meson with an error if an invalid escape sequence is found in a | Niklas Claesson | 1 | -3/+17 |
2018-04-17 | Complete python escape sequences aware strings | Tim 'mithro' Ansell | 1 | -4/+30 |
2018-02-21 | Newlines in single line strings should only be a warning for now. | Jussi Pakkanen | 1 | -1/+2 |
2018-02-20 | Fail if singleline string has multiple lines | Caio Marcelo de Oliveira Filho | 1 | -0/+3 |
2018-02-05 | Add support for hex int literals. | Jussi Pakkanen | 1 | -0/+4 |
2018-01-30 | Report warning/error locations in a format IDEs may already know how to parse | Jon Turney | 1 | -1/+1 |
2018-01-01 | Consolidate warning location formatting in mlog.warning() | Jon Turney | 1 | -2/+3 |
2017-12-30 | Add filename and lineno to duplicate kwargs warning | Jon Turney | 1 | -2/+2 |
2017-11-27 | Fix escaping of newlines in string literals | Joergen Ibsen | 1 | -4/+4 |
2017-06-25 | Do not permit invalid and/or nodes to be declared. Closes #1886. | Jussi Pakkanen | 1 | -0/+7 |