[Python-checkins] cpython (3.3): Silence compiler warning for an unused declaration
raymond.hettinger
python-checkins at python.org
Sun Aug 4 21:04:25 CEST 2013
http://hg.python.org/cpython/rev/531df2108bf5
changeset: 85026:531df2108bf5
branch: 3.3
parent: 85022:ed8d94e4862a
user: Raymond Hettinger <python at rcn.com>
date: Sun Aug 04 12:00:36 2013 -0700
summary:
Silence compiler warning for an unused declaration
files:
Objects/setobject.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/Objects/setobject.c b/Objects/setobject.c
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -214,7 +214,6 @@
set_insert_key(register PySetObject *so, PyObject *key, Py_hash_t hash)
{
register setentry *entry;
- typedef setentry *(*lookupfunc)(PySetObject *, PyObject *, Py_hash_t);
assert(so->lookup != NULL);
entry = so->lookup(so, key, hash);
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list