diff options
author | Thomas Heller <theller@ctypes.org> | 2007-07-11 13:57:16 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2007-07-11 13:57:16 (GMT) |
commit | 3b645802f5ee3c8a545d0c81e56cf7e30aea594d (patch) | |
tree | 465b9b2df1a0282c78ac96708c0ab4187a8c916d /Objects/object.c | |
parent | e16d2502d288742534ca5ebc2636ab25aa12ccf6 (diff) | |
download | cpython-3b645802f5ee3c8a545d0c81e56cf7e30aea594d.zip cpython-3b645802f5ee3c8a545d0c81e56cf7e30aea594d.tar.gz cpython-3b645802f5ee3c8a545d0c81e56cf7e30aea594d.tar.bz2 |
Remove unused local variable.
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 1 |
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)) { |