]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Fix some incorrect indentation around the main switch (#98177)
authorGuido van Rossum <guido@python.org>
Tue, 11 Oct 2022 23:45:53 +0000 (16:45 -0700)
committerGitHub <noreply@github.com>
Tue, 11 Oct 2022 23:45:53 +0000 (16:45 -0700)
commitf5d71073e61b69b3ab331736fd69dc6324405775
tree055841e56a60562cfcbeb35c4fbf9e30e51dd55e
parent5ecf961640192a2192383aa20e1e93dcdf23c9b6
Fix some incorrect indentation around the main switch (#98177)

The `}` marked with `/* End instructions */` is the end of the switch.
There is another pair of `{}` around the switch, which is vestigial
from ancient times when it was `for (;;) { switch (opcode) { ... } }`.
All `DISPATCH` macro calls should be inside that pair.
Python/ceval.c