Commit b24de78f authored by Benjamin Peterson's avatar Benjamin Peterson

remove unused variable

parent 3a8cbe5e
...@@ -1925,7 +1925,7 @@ If the element is not a member, raise a KeyError."); ...@@ -1925,7 +1925,7 @@ If the element is not a member, raise a KeyError.");
static PyObject * static PyObject *
set_discard(PySetObject *so, PyObject *key) set_discard(PySetObject *so, PyObject *key)
{ {
PyObject *tmpkey, *result; PyObject *tmpkey;
int rv; int rv;
rv = set_discard_key(so, key); rv = set_discard_key(so, key);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment