Removed unused initialization and the uninteresting comment.

This commit is contained in:
Raymond Hettinger 2016-04-29 01:37:05 -07:00
parent fa070298e9
commit 8421d714d0
1 changed files with 1 additions and 2 deletions

View File

@ -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;