From 31e43cbe5f01cdd5b5ab330ec3040920e8b61a91 Mon Sep 17 00:00:00 2001 From: Brandt Bucher Date: Tue, 4 Jan 2022 11:38:32 -0800 Subject: bpo-46009: Remove GEN_START (GH-30367) --- Python/ceval.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index 81bea44465..953876f622 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2709,14 +2709,6 @@ check_eval_breaker: return retval; } - TARGET(GEN_START) { - PyObject *none = POP(); - assert(none == Py_None); - assert(oparg < 3); - Py_DECREF(none); - DISPATCH(); - } - TARGET(POP_EXCEPT) { _PyErr_StackItem *exc_info = tstate->exc_info; PyObject *value = exc_info->exc_value; -- cgit v1.2.1