Remove unused local variable.

This commit is contained in:
Thomas Heller 2007-07-11 13:57:16 +00:00
parent e16d2502d2
commit 3b645802f5

View file

@ -398,7 +398,6 @@ PyObject *
_PyObject_Str(PyObject *v) _PyObject_Str(PyObject *v)
{ {
PyObject *res; PyObject *res;
int type_ok;
if (v == NULL) if (v == NULL)
return PyString_FromString("<NULL>"); return PyString_FromString("<NULL>");
if (PyString_CheckExact(v)) { if (PyString_CheckExact(v)) {