summaryrefslogtreecommitdiffstats
path: root/Tools/clinic/clinic.py
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-110558: Enable ruff's pyupgrade rules when running on Argument Clin...Miss Islington (bot)2023-10-101-1/+1
* [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-201-26/+30
* 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-161-27/+55
* 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
* gh-104050: Run mypy on `clinic.py` in CI (#104421)Alex Waygood2023-05-151-14/+26
* 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
* gh-97728: Argument Clinic: Fix uninitialized variable in the Py_UNICODE conve...Serhiy Storchaka2022-10-031-0/+1
* gh-90928: Improve static initialization of keywords tuple in AC (#95907)Erlend E. Aasland2022-08-131-42/+47
* gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...Eric Snow2022-08-111-19/+79
* gh-95007: Remove the NoneType return converter (GH-95019)Serhiy Storchaka2022-07-201-11/+0
* gh-94430: Allow params named `module` or `self` with custom C names in Argume...Erlend Egeberg Aasland2022-07-071-2/+7
* gh-94538: Fix Argument Clinic output to custom file (#94539)Erlend Egeberg Aasland2022-07-051-1/+1
* gh-84623: Remove unused imports (#94132)Victor Stinner2022-06-221-1/+0
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-121-10/+0