summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2019-10-07 18:20:05 +0800
committerSerhiy Storchaka <storchaka@gmail.com>2019-10-07 13:20:05 +0300
commited8efd8e2c993e9d0528ffb875f73e2aefada068 (patch)
treea7a6bb1ba3e10f4a3a5a386d4c9f32d839769bbc /Objects
parentef092fe9905f61ca27889092ca1248a11aa74498 (diff)
downloadcpython-git-ed8efd8e2c993e9d0528ffb875f73e2aefada068.tar.gz
Fix a compile warning in dictobject.c (GH-16610)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c1
1 files changed, 0 insertions, 1 deletions
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 & */