summaryrefslogtreecommitdiff
path: root/Objects/object.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index ee4f5821b6..3583bca6c4 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)) {