Removed unused initialization and the uninteresting comment.
This commit is contained in:
parent
fa070298e9
commit
8421d714d0
|
@ -1043,9 +1043,8 @@ PyDoc_STRVAR(update_doc,
|
||||||
static PyObject *
|
static PyObject *
|
||||||
make_new_set(PyTypeObject *type, PyObject *iterable)
|
make_new_set(PyTypeObject *type, PyObject *iterable)
|
||||||
{
|
{
|
||||||
PySetObject *so = NULL;
|
PySetObject *so;
|
||||||
|
|
||||||
/* create PySetObject structure */
|
|
||||||
so = (PySetObject *)type->tp_alloc(type, 0);
|
so = (PySetObject *)type->tp_alloc(type, 0);
|
||||||
if (so == NULL)
|
if (so == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue