summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Expand)AuthorAgeFilesLines
...
* Disable `differing_test_runners` health check (#108886)Nikita Sobolev2023-09-041-0/+4
* 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-108614: Remove non-debug uses of `#if TIER_ONE` and `#if TIER_TWO` from `_...Mark Shannon2023-08-311-2/+2
* gh-108455: peg_generator: use `types-setuptools==68.1.0.1` in CI (#108697)Alex Waygood2023-08-313-11/+5
* gh-108455: peg_generator: install two stubs packages before running mypy (#10...Alex Waygood2023-08-294-6/+17
* gh-107557: Remove unnecessary SAVE_IP instructions (#108583)Guido van Rossum2023-08-293-12/+21
* gh-108455: peg generator: Use `strict_optional=True` for `grammar_parser` (#1...Nikita Sobolev2023-08-292-4/+1
* gh-108494: Argument Clinic: fix option group for Limited C API (#108574)Victor Stinner2023-08-291-3/+9
* gh-108455: peg_generator: make the mypy config slightly stricter (#108627)Alex Waygood2023-08-294-8/+12
* gh-108455: Simplify the peg_generator mypy config (#108620)Alex Waygood2023-08-291-18/+8
* gh-106320: Remove _PyAnextAwaitable_Type from the public C API (#108597)Victor Stinner2023-08-292-3/+2
* GH-107603: Clinic: Pass specific attributes to ``print_block()`` (#108581)Adam Turner2023-08-281-11/+17
* gh-108455: Run `mypy` on `Tools/peg_generator` (#108456)Nikita Sobolev2023-08-285-10/+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-262-21/+13
* gh-106320: Remove private _PyLong_FileDescriptor_Converter() (#108503)Victor Stinner2023-08-262-1/+12
* gh-106320: Remove private _PyLong converter functions (#108499)Victor Stinner2023-08-262-0/+17
* 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-252-11/+45
* gh-107901: add the HAS_EVAL_BREAK instruction flag (#108375)Irit Katriel2023-08-252-4/+9
* gh-104504: Cases generator: enable mypy's `possibly-undefined` error code (#1...Alex Waygood2023-08-252-5/+10
* gh-106581: Split CALL_BOUND_METHOD_EXACT_ARGS into uops (#108462)Guido van Rossum2023-08-251-1/+1
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-241-2/+2
* gh-106581: Fix two bugs in the code generator's copy optimization (#108380)Guido van Rossum2023-08-241-17/+62
* gh-107211: No longer export internal functions (7) (#108425)Victor Stinner2023-08-241-2/+2
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-232-67/+12
* Fix spurious diff if the cases generator is run on Windows (#108319)Alex Waygood2023-08-221-1/+1
* gh-108179: Add error message for parser stack overflows (#108256)Dennis Sweeney2023-08-221-2/+1
* gh-108216: Cleanup #include in internal header files (#108228)Victor Stinner2023-08-211-1/+1
* gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)Victor Stinner2023-08-211-0/+7
* gh-95065, gh-107704: Argument Clinic: support multiple '/ [from ...]' and '* ...Serhiy Storchaka2023-08-211-51/+59
* gh-104504: cases generator: Add `--warn-unreachable` to the mypy config (#108...Alex Waygood2023-08-204-28/+36
* gh-107704: Argument Clinic: add support for deprecating keyword use of parame...Serhiy Storchaka2023-08-192-102/+234
* gh-107565: Update multissltests and GitHub CI workflows to use OpenSSL 1.1.1v...Ned Deily2023-08-181-3/+3
* gh-104504: Run mypy on cases_generator in CI (and blacken the code) (gh-108090)Dong-hee Na2023-08-189-189/+304
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-172-3/+5
* gh-104683: Argument Clinic: Remove unreachable code from _module_and_class() ...Erlend E. Aasland2023-08-171-2/+0
* gh-105481: opcode.h is no longer generated during the build (#108080)Irit Katriel2023-08-171-34/+3
* gh-105481: fix out of date comment (#108079)Irit Katriel2023-08-171-1/+1
* gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)Guido van Rossum2023-08-164-54/+79
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-164-116/+208
* gh-104683: Argument Clinic: Extract parse function name helper (#107964)Erlend E. Aasland2023-08-161-32/+29
* gh-107557: Setup abstract interpretation (#107847)Ken Jin2023-08-155-2/+111
* 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
* Attempt to speed up deepfreeze.py (#107887)Guido van Rossum2023-08-141-12/+23