summaryrefslogtreecommitdiff
path: root/Objects/object.c
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-07-11 13:57:16 +0000
committerThomas Heller <theller@ctypes.org>2007-07-11 13:57:16 +0000
commit3b645802f5ee3c8a545d0c81e56cf7e30aea594d (patch)
tree465b9b2df1a0282c78ac96708c0ab4187a8c916d /Objects/object.c
parente16d2502d288742534ca5ebc2636ab25aa12ccf6 (diff)
downloadcpython-git-3b645802f5ee3c8a545d0c81e56cf7e30aea594d.tar.gz
Remove unused local variable.
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)) {