diff options
author | Dong-hee Na <donghee.na@python.org> | 2023-06-30 15:58:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 15:58:07 (GMT) |
commit | 02ce3d56e6d230768853757109e7ca6425a6a600 (patch) | |
tree | e68a803979b5e62e3fcad0e68e5ec030b8402904 | |
parent | a8ae73965b02302b7661ea07a6e4f955a961aca9 (diff) | |
download | cpython-02ce3d56e6d230768853757109e7ca6425a6a600.zip cpython-02ce3d56e6d230768853757109e7ca6425a6a600.tar.gz cpython-02ce3d56e6d230768853757109e7ca6425a6a600.tar.bz2 |
gh-106280: Remove unnecessary unreachable code (gh-106285)
-rw-r--r-- | Python/ceval.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 2010e9e..80ae85c 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2845,9 +2845,6 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject { fprintf(stderr, "Unknown uop %d, operand %" PRIu64 "\n", opcode, operand); Py_FatalError("Unknown uop"); - abort(); // Unreachable - for (;;) {} - // Really unreachable } } |