mirror of
https://github.com/python/cpython.git
synced 2025-09-01 06:28:36 +00:00
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157)
This commit is contained in:
parent
0267128aa4
commit
f432a3234f
13 changed files with 35 additions and 21 deletions
|
@ -1807,9 +1807,11 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
|
|||
switch (oparg) {
|
||||
case 2:
|
||||
cause = POP(); /* cause */
|
||||
/* fall through */
|
||||
case 1:
|
||||
exc = POP(); /* exc */
|
||||
case 0: /* Fallthrough */
|
||||
/* fall through */
|
||||
case 0:
|
||||
if (do_raise(exc, cause)) {
|
||||
why = WHY_EXCEPTION;
|
||||
goto fast_block_end;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue