From: Raymond Hettinger Date: Fri, 29 Apr 2016 08:37:05 +0000 (-0700) Subject: Removed unused initialization and the uninteresting comment. X-Git-Tag: v3.6.0a1~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8421d714d030dbd0c368148aa818e15673db3b39;p=thirdparty%2FPython%2Fcpython.git Removed unused initialization and the uninteresting comment. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index 3d0f355fe7fe..6dd403f30fa3 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;