From 8421d714d030dbd0c368148aa818e15673db3b39 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 29 Apr 2016 01:37:05 -0700 Subject: Removed unused initialization and the uninteresting comment. --- Objects/setobject.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Objects/setobject.c b/Objects/setobject.c index 3d0f355..6dd403f 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -1043,9 +1043,8 @@ PyDoc_STRVAR(update_doc, static PyObject * make_new_set(PyTypeObject *type, PyObject *iterable) { - PySetObject *so = NULL; + PySetObject *so; - /* create PySetObject structure */ so = (PySetObject *)type->tp_alloc(type, 0); if (so == NULL) return NULL; -- cgit v0.12