diff options
author | Kevin Diem <kg.diem@gmail.com> | 2023-07-16 15:16:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-16 15:16:34 (GMT) |
commit | cc25ca16ee406db936dfbd2337cbd14b12ccc4b7 (patch) | |
tree | ca9f68c9b35b7a5aab149da2ad93c21bf0ecc428 /Misc | |
parent | e58960160fcb4fce63177fcd9ef605f887377767 (diff) | |
download | cpython-cc25ca16ee406db936dfbd2337cbd14b12ccc4b7.zip cpython-cc25ca16ee406db936dfbd2337cbd14b12ccc4b7.tar.gz cpython-cc25ca16ee406db936dfbd2337cbd14b12ccc4b7.tar.bz2 |
gh-106706: Streamline family syntax in cases generator DSL (#106716)
From `family(opname, STRUCTSIZE) = OPNAME + SPEC1 + ... + SPECn;`
to `family(OPNAME, STRUCTSIZE) = SPEC1 + ... + SPECn;`
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tools-Demos/2023-07-13-12-08-35.gh-issue-106706.29zp8E.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2023-07-13-12-08-35.gh-issue-106706.29zp8E.rst b/Misc/NEWS.d/next/Tools-Demos/2023-07-13-12-08-35.gh-issue-106706.29zp8E.rst new file mode 100644 index 0000000..bbd8e8e --- /dev/null +++ b/Misc/NEWS.d/next/Tools-Demos/2023-07-13-12-08-35.gh-issue-106706.29zp8E.rst @@ -0,0 +1,3 @@ +Change bytecode syntax for families
+to remove redundant name matching
+pseudo syntax.
|