commit | 148a63f1fc271a1abe0cd06dd3fac0bb57131b73 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Jun 14 04:24:41 2004 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Mon Jun 14 04:24:41 2004 +0000 |
tree | f95fc15de173f507c4582f0cb8d9556179a3ce33 | |
parent | 3d1f6bba6d199f1305892b253d27efc154c0ac0e [diff] |
Remove a function no longer in use.
diff --git a/Objects/setobject.c b/Objects/setobject.c index 3dc11d4..289d5d3 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c
@@ -757,14 +757,6 @@ PyDoc_STRVAR(clear_doc, "Remove all elements from this set."); -static int -set_tp_clear(PySetObject *so) -{ - PyDict_Clear(so->data); - so->hash = -1; - return 0; -} - static PyObject * set_add(PySetObject *so, PyObject *item) {