]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-106706: Streamline family syntax in cases generator DSL (#106716)
authorKevin Diem <kg.diem@gmail.com>
Sun, 16 Jul 2023 15:16:34 +0000 (11:16 -0400)
committerGitHub <noreply@github.com>
Sun, 16 Jul 2023 15:16:34 +0000 (08:16 -0700)
commitcc25ca16ee406db936dfbd2337cbd14b12ccc4b7
treeca9f68c9b35b7a5aab149da2ad93c21bf0ecc428
parente58960160fcb4fce63177fcd9ef605f887377767
gh-106706: Streamline family syntax in cases generator DSL (#106716)

From `family(opname, STRUCTSIZE) = OPNAME + SPEC1 + ... +  SPECn;`
to `family(OPNAME, STRUCTSIZE) = SPEC1 + ... + SPECn;`
Misc/NEWS.d/next/Tools-Demos/2023-07-13-12-08-35.gh-issue-106706.29zp8E.rst [new file with mode: 0644]
Python/bytecodes.c
Tools/cases_generator/generate_cases.py
Tools/cases_generator/interpreter_definition.md
Tools/cases_generator/test_generator.py