diff options
author | Georg Brandl <georg@python.org> | 2009-05-05 09:21:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-05 09:21:07 (GMT) |
commit | b0f79c8da1db0d7aa44e3465f98508b89532f677 (patch) | |
tree | 04d079456bc87498ef0e2cb22875140d4392f63f /Objects | |
parent | 780b2a615388e6885d81f926cbc2f21eb3484ef2 (diff) | |
download | cpython-b0f79c8da1db0d7aa44e3465f98508b89532f677.zip cpython-b0f79c8da1db0d7aa44e3465f98508b89532f677.tar.gz cpython-b0f79c8da1db0d7aa44e3465f98508b89532f677.tar.bz2 |
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.
........
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/descrobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 9715238..d658151 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -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); |