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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66d8ce510ab79c566a68eaeeab19494450368581;p=thirdparty%2FPython%2Fcpython.git Remove unused variable. --- diff --git a/Objects/descrobject.c b/Objects/descrobject.c index f6f5976d5f74..00cda3c46f8c 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);