]> granicus.if.org Git - python/commitdiff
Merged revisions 72328 via svnmerge from
authorGeorg Brandl <georg@python.org>
Tue, 5 May 2009 09:21:07 +0000 (09:21 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 5 May 2009 09:21:07 +0000 (09:21 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72328 | georg.brandl | 2009-05-05 11:20:52 +0200 (Di, 05 Mai 2009) | 1 line

  Remove unused variable.
........

Objects/descrobject.c

index 9715238ff76f022621773c775082f26664d643bf..d6581511b9b63bd79ed798f80f51900c9e087f8d 100644 (file)
@@ -1225,7 +1225,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);