In `generated_cases.c.h` we have a lot(20) of "useless" checks like that: https://github.com/python/cpython/blob/af446bbb76f64e67831444a0ceee6863a1527088/Python/generated_cases.c.h#L541 Does it really need to be here, or should we remove this? I think, we can just use `goto ...` instead of `if (true) goto ...` <!-- gh-linked-prs --> ### Linked PRs * gh-102050 <!-- /gh-linked-prs -->
In
generated_cases.c.hwe have a lot(20) of "useless" checks like that:cpython/Python/generated_cases.c.h
Line 541 in af446bb
Does it really need to be here, or should we remove this?
I think, we can just use
goto ...instead ofif (true) goto ...Linked PRs
generate_cases.py#102050