From: Hai Shi Date: Mon, 7 Oct 2019 10:20:05 +0000 (+0800) Subject: Fix a compile warning in dictobject.c (GH-16610) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed8efd8e2c993e9d0528ffb875f73e2aefada068;p=python Fix a compile warning in dictobject.c (GH-16610) --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 5c3f1fb3c1..164fe2a273 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 & */