summaryrefslogtreecommitdiffstats
path: root/Tools/clinic
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-117613: Argument Clinic: ensure that defining class params are posi...neonene2024-04-171-1/+7
* [3.12] gh-115015: Argument Clinic: fix generated code for METH_METHOD methods...Erlend E. Aasland2024-02-061-1/+1
* [3.12] Bump ruff to 0.2.0 (GH-114932) (#114935)Miss Islington (bot)2024-02-021-0/+2
* [3.12] Sync location of `mypy` pin with the `main` branch (#111317)Artyom Romanov2023-10-251-2/+0
* [3.12] Bump test deps: `ruff` and `mypy` (GH-111288) (#111313)Artyom Romanov2023-10-251-1/+1
* [3.12] Bump test deps: `ruff` and `pre-commit-hooks` (GH-110972) (#110980)Nikita Sobolev2023-10-171-1/+1
* [3.12] gh-110558: Enable ruff's pyupgrade rules when running on Argument Clin...Miss Islington (bot)2023-10-102-1/+16
* [3.12] gh-110558: Run ruff on Argument Clinic in CI (#110559) (#110598)Alex Waygood2023-10-101-0/+14
* [3.12] gh-86457: Fix signature for code.replace() (GH-23199) (#107744)Serhiy Storchaka2023-08-161-123/+132
* [3.12] Docs: Argument Clinic: Restructure "Basic concepts and usage" (GH-1069...Miss Islington (bot)2023-07-271-7/+13
* [3.12] gh-106970: Fix Argument Clinic 'destination <name> clear' command (GH-...Miss Islington (bot)2023-07-221-8/+8
* [3.12] gh-64595: Fix regression in file write logic in Argument Clinic (#1064...Erlend E. Aasland2023-07-051-23/+12
* [3.12] gh-106368: Add tests for permutation helpers in Argument Clinic (GH-10...Miss Islington (bot)2023-07-041-2/+2
* [3.12] gh-106359: Fix corner case bugs in Argument Clinic converter parser (G...Miss Islington (bot)2023-07-031-7/+9
* gh-104683: clinic.py: Modernise `parse_converter()` using pattern-matching (#...Alex Waygood2023-05-211-15/+19
* gh-104050: Add more type annotations to Argument Clinic (#104631)Erlend E. Aasland2023-05-211-23/+44
* gh-104050: Add basic type hints to Argument Clinic clinic class (#104705)Erlend E. Aasland2023-05-211-17/+38
* gh-104050: Annotate Argument Clinic return converters (#104706)Erlend E. Aasland2023-05-211-30/+75
* gh-104050: Add basic type hints to Argument Clinic DSL parser (#104704)Erlend E. Aasland2023-05-201-21/+40
* gh-104683: Modernise Tools/clinic/ (#104684)Alex Waygood2023-05-202-27/+31
* gh-104683: Modernise `clinic.py` using `str.removeprefix` and `str.removesuff...Alex Waygood2023-05-201-5/+5
* gh-104146: Purge dead code from Argument Clinic (#104680)Erlend E. Aasland2023-05-201-10/+1
* gh-104683: Argument clinic: use `dict` over `OrderedDict` (#104647)Alex Waygood2023-05-201-25/+23
* gh-104050: Add more type annotations to Argument Clinic (#104628)Erlend E. Aasland2023-05-181-14/+39
* gh-104050: Improve some typing around `default`s and sentinel values (#104626)Alex Waygood2023-05-181-18/+23
* gh-104146: Remove unused vars from Argument Clinic (#104627)Erlend E. Aasland2023-05-181-2/+0
* gh-104050: Add type hints to Argument Clinic converter keywords (#104588)Erlend E. Aasland2023-05-171-12/+36
* gh-104050: Add typing to Argument Clinic converters (#104547)Erlend E. Aasland2023-05-161-53/+57
* gh-104050: Add more annotations to `Tools/clinic.py` (#104544)Nikita Sobolev2023-05-163-30/+60
* gh-104050: Don't star-import 'types' in Argument Clinic (#104543)Erlend E. Aasland2023-05-161-3/+2
* gh-104050: Add basic typing to CConverter in clinic.py (#104538)Erlend E. Aasland2023-05-161-14/+14
* gh-64595: Fix write file logic in Argument Clinic (#104507)Erlend E. Aasland2023-05-161-11/+12
* Bump mypy from 1.2.0 to 1.3.0 in /Tools/clinic (#104501)dependabot[bot]2023-05-151-1/+1
* gh-104050: Run mypy on `clinic.py` in CI (#104421)Alex Waygood2023-05-154-24/+55
* gh-104389: Add 'unused' keyword to Argument Clinic C converters (#104390)Erlend E. Aasland2023-05-121-1/+19
* gh-90953: Don't use deprecated AST nodes in clinic.py (#104322)Alex Waygood2023-05-091-9/+3
* gh-64660: Don't hardcode Argument Clinic return converter result variable nam...Erlend E. Aasland2023-05-071-9/+14
* gh-104146: Remove unused var 'parser_body_declarations' from clinic.py (#104214)Erlend E. Aasland2023-05-051-3/+1
* gh-64595: Argument Clinic: Touch source file if any output file changed (#104...Erlend E. Aasland2023-05-051-6/+13
* gh-68395: Avoid naming conflicts by mangling variable names in Argument Clini...Erlend E. Aasland2023-05-051-1/+12
* gh-104146: Remove unused 'second_pass_replacements' from clinic.py (#104147)Erlend E. Aasland2023-05-041-19/+2
* gh-101409: Improve generated clinic code for self type checks (#101411)Erlend E. Aasland2023-01-311-10/+12
* Fix copy-paste error in `Tools/clinic.py` (#100560)Nikita Sobolev2022-12-281-1/+1
* GH-100342: check for allocation failure in AC `*args` parsing (#100343)Kumar Aditya2022-12-281-0/+4
* Remove `NoneType` redefinition from `clinic.py` (#100551)Nikita Sobolev2022-12-271-2/+0
* gh-100176: remove incorrect version compatibility check from argument clinic ...Shantanu2022-12-121-4/+0
* gh-64490: Fix bugs in argument clinic varargs processing (#32092)colorfulappl2022-11-241-5/+6
* gh-99240: Fix double-free bug in Argument Clinic str_converter generated code...colorfulappl2022-11-241-2/+23
* gh-64490: Fix refcount error when arguments are packed to tuple in argument c...colorfulappl2022-11-241-1/+1
* gh-92886: [clinic.py] raise exception on invalid input instead of assertion (...Irit Katriel2022-10-071-1/+2