From 0c5c76fd888926821f6ede55d1a27b6c220f8084 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 7 Oct 2019 12:03:49 +0200 Subject: [PATCH] bpo-38210: Fix compiler warning in dictobject.c The "tmp" variable is no longer used. --- Objects/dictobject.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 5c3f1fb3c1a25e..164fe2a273b1d2 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -4186,7 +4186,6 @@ _PyDictView_Intersect(PyObject* self, PyObject *other) Py_ssize_t len_self; int rv; int (*dict_contains)(_PyDictViewObject *, PyObject *); - PyObject *tmp; /* Python interpreter swaps parameters when dict view is on right side of & */