summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-27 16:17:37 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-27 16:17:37 (GMT)
commit66d8ce510ab79c566a68eaeeab19494450368581 (patch)
tree9e5b8949c243a46a844521455ac96f95c159522d /Objects
parent7794da6af07b66cd678eed2b3d65d9d4f6fc8069 (diff)
downloadcpython-66d8ce510ab79c566a68eaeeab19494450368581.zip
cpython-66d8ce510ab79c566a68eaeeab19494450368581.tar.gz
cpython-66d8ce510ab79c566a68eaeeab19494450368581.tar.bz2
Remove unused variable.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/descrobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/descrobject.c b/Objects/descrobject.c
index f6f5976..00cda3c 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);