Merged revisions 72328 via svnmerge from

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.
........
This commit is contained in:
Georg Brandl 2009-05-05 09:21:07 +00:00
parent 780b2a6153
commit b0f79c8da1
1 changed files with 0 additions and 1 deletions

View 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);