summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/object.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index ee4f582..3583bca 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -398,7 +398,6 @@ PyObject *
_PyObject_Str(PyObject *v)
{
PyObject *res;
- int type_ok;
if (v == NULL)
return PyString_FromString("<NULL>");
if (PyString_CheckExact(v)) {