diff options
| author | Thomas Heller <theller@ctypes.org> | 2007-07-11 13:57:16 +0000 |
|---|---|---|
| committer | Thomas Heller <theller@ctypes.org> | 2007-07-11 13:57:16 +0000 |
| commit | 3b645802f5ee3c8a545d0c81e56cf7e30aea594d (patch) | |
| tree | 465b9b2df1a0282c78ac96708c0ab4187a8c916d | |
| parent | e16d2502d288742534ca5ebc2636ab25aa12ccf6 (diff) | |
| download | cpython-git-3b645802f5ee3c8a545d0c81e56cf7e30aea594d.tar.gz | |
Remove unused local variable.
| -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 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)) { |
