From: Mark Dickinson Date: Sun, 27 Sep 2009 16:17:37 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: v2.6.3rc1~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=66d8ce510ab79c566a68eaeeab19494450368581;p=python Remove unused variable. --- diff --git a/Objects/descrobject.c b/Objects/descrobject.c index f6f5976d5f..00cda3c46f 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -1212,7 +1212,6 @@ property_copy(PyObject *old, PyObject *get, PyObject *set, PyObject *del, PyObject *doc) { propertyobject *pold = (propertyobject *)old; - propertyobject *pnew = NULL; PyObject *new, *type; type = PyObject_Type(old);