projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a39de11
)
remove unused variable
author
Benjamin Peterson
<benjamin@python.org>
Sun, 30 Oct 2011 18:24:44 +0000
(14:24 -0400)
committer
Benjamin Peterson
<benjamin@python.org>
Sun, 30 Oct 2011 18:24:44 +0000
(14:24 -0400)
Objects/setobject.c
patch
|
blob
|
history
diff --git
a/Objects/setobject.c
b/Objects/setobject.c
index 81a139fccc1c190e12ba858c205265fac7d631c9..af1ce16bc29f6b404f8f1349386693aef112b921 100644
(file)
--- a/
Objects/setobject.c
+++ b/
Objects/setobject.c
@@
-1925,7
+1925,7
@@
If the element is not a member, raise a KeyError.");
static PyObject *
set_discard(PySetObject *so, PyObject *key)
{
- PyObject *tmpkey
, *result
;
+ PyObject *tmpkey;
int rv;
rv = set_discard_key(so, key);