Commit 8421d714 authored by Raymond Hettinger's avatar Raymond Hettinger

Removed unused initialization and the uninteresting comment.

parent fa070298
...@@ -1043,9 +1043,8 @@ PyDoc_STRVAR(update_doc, ...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment