Issue #27100:  Fix ref leak
diff --git a/Python/ceval.c b/Python/ceval.c
index ebf073a..83296f6 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3138,8 +3138,10 @@
             if (enter == NULL)
                 goto error;
             exit = special_lookup(mgr, &PyId___exit__);
-            if (exit == NULL)
+            if (exit == NULL) {
+                Py_DECREF(enter);
                 goto error;
+            }
             SET_TOP(exit);
             Py_DECREF(mgr);
             res = PyObject_CallFunctionObjArgs(enter, NULL);