summaryrefslogtreecommitdiffstats
path: root/Tools/clinic
Commit message (Expand)AuthorAgeFilesLines
...
* gh-113336: Remove the 'version' directive from Argument Clinic (#113341)Erlend E. Aasland2023-12-211-52/+0
* Docs: update URL in Argument Clinic CLI help text (#113351)Erlend E. Aasland2023-12-211-1/+1
* gh-112205: Support docstring for `@getter` (#113160)Donghee Na2023-12-201-7/+31
* gh-112205: Require @getter and @setter to be methods (#113278)Erlend E. Aasland2023-12-191-0/+4
* gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...Serhiy Storchaka2023-12-141-1/+1
* gh-112205: Support `@setter` annotation from AC (gh-112922)Donghee Na2023-12-131-9/+66
* Argument Clinic: fix bare "type" in annotations (#112915)Jelle Zijlstra2023-12-101-5/+5
* Fix typos in variable names, function names, and comments (GH-101868)Yang Hau2023-12-011-2/+2
* gh-112205: Support @getter annotation from AC (gh-112396)Donghee Na2023-11-301-10/+43
* gh-112213: Add missing declaration of target_critical_section (gh-112374)Donghee Na2023-11-241-2/+4
* gh-111903: Update AC to support "pycore_critical_section.h" header (gh-112251)Donghee Na2023-11-191-1/+2
* gh-112213: Add @critical_section target directive to Argument Clinic (gh-112232)Donghee Na2023-11-181-4/+21
* gh-111903: Add `@critical_section` directive to Argument Clinic. (#111904)Sam Gross2023-11-141-5/+27
* Bump mypy to 1.7.0 (#111961)Alex Waygood2023-11-101-3/+1
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-071-4/+16
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-011-16/+4
* gh-67565: Remove redundant C-contiguity checks (GH-105521)Furkan Onder2023-10-231-12/+1
* gh-110964: clinic: refactor output_templates() (#110982)Victor Stinner2023-10-201-56/+53
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+22
* gh-85283: Fix Argument Clinic for md5 extension (#110976)Victor Stinner2023-10-171-3/+2
* gh-110907: AC: Disallow using `*` with vararg (#110908)Nikita Sobolev2023-10-161-0/+9
* gh-110558: Enable ruff's pyupgrade rules when running on Argument Clinic (#11...Alex Waygood2023-10-102-1/+16
* gh-110558: Run ruff on Argument Clinic in CI (#110559)Alex Waygood2023-10-102-3/+14
* gh-108494: Argument Clinic: inline parsing code for positional-only parameter...Serhiy Storchaka2023-09-031-254/+489
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-311-37/+104
* gh-108494: Argument Clinic: fix option group for Limited C API (#108574)Victor Stinner2023-08-291-3/+9
* GH-107603: Clinic: Pass specific attributes to ``print_block()`` (#108581)Adam Turner2023-08-281-11/+17
* gh-108494: Argument clinic: Improve the `parse_file()` API (#108575)Alex Waygood2023-08-281-7/+7
* gh-108494: Argument Clinic: fix support of Limited C API (GH-108536)Serhiy Storchaka2023-08-281-97/+124
* gh-104683: Argument Clinic: Refactor the module and class resolver (#108552)Erlend E. Aasland2023-08-281-16/+10
* gh-106320: Remove private AC converter functions (#108505)Victor Stinner2023-08-261-0/+3
* gh-106320: Remove private _PyLong_FileDescriptor_Converter() (#108503)Victor Stinner2023-08-261-0/+8
* gh-106320: Remove private _PyLong converter functions (#108499)Victor Stinner2023-08-261-0/+8
* gh-108494: AC supports pos-only args in limited C API (#108498)Victor Stinner2023-08-251-4/+20
* gh-107603: Argument Clinic can emit includes (#108486)Victor Stinner2023-08-251-17/+41
* gh-108494: Argument Clinic partial supports of Limited C API (#108495)Victor Stinner2023-08-251-11/+44
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-241-2/+2
* gh-95065, gh-107704: Argument Clinic: support multiple '/ [from ...]' and '* ...Serhiy Storchaka2023-08-211-51/+59
* gh-107704: Argument Clinic: add support for deprecating keyword use of parame...Serhiy Storchaka2023-08-191-102/+230
* gh-104504: Run mypy on cases_generator in CI (and blacken the code) (gh-108090)Dong-hee Na2023-08-181-2/+0
* gh-104683: Argument Clinic: Remove unreachable code from _module_and_class() ...Erlend E. Aasland2023-08-171-2/+0
* gh-104683: Argument Clinic: Extract parse function name helper (#107964)Erlend E. Aasland2023-08-161-32/+29
* gh-107972: Argument Clinic: Ensure a C basename is provided after 'as' (#107973)Erlend E. Aasland2023-08-151-3/+6
* gh-107880: Argument Clinic: Fix regression in gh-107885 (#107974)Erlend E. Aasland2023-08-151-14/+19
* gh-107880: Teach Argument Clinic to clone __init__ and __new__ methods (#107885)Erlend E. Aasland2023-08-131-7/+19
* gh-107883: Argument Clinic: Handle full module/class path in Function.fulldis...Erlend E. Aasland2023-08-121-3/+10
* gh-95065: Produce nicer deprecation messages in Argument Clinic (#107808)Erlend E. Aasland2023-08-091-17/+19
* gh-104683: Argument Clinic: Params now render their own docstrings (#107790)Erlend E. Aasland2023-08-091-16/+11
* gh-104683: Remove unused variables from `Tools/clinic` and tests for `Tools/c...Alex Waygood2023-08-091-1/+1
* gh-80282: Argument Clinic: Add clarifying comment about ASCII docstring limit...Erlend E. Aasland2023-08-091-0/+5