diff options
author | Brandt Bucher <brandt@python.org> | 2022-01-04 19:38:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 19:38:32 (GMT) |
commit | 31e43cbe5f01cdd5b5ab330ec3040920e8b61a91 (patch) | |
tree | d1fe86279c419ff34eae29c77a538b1d053f47cc /Python/ceval.c | |
parent | f404e26d749c85eef7b5be836375260855050ee3 (diff) | |
download | cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.zip cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.tar.gz cpython-31e43cbe5f01cdd5b5ab330ec3040920e8b61a91.tar.bz2 |
bpo-46009: Remove GEN_START (GH-30367)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 81bea44..953876f 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; |