From 034d97605d5300721310a0d7320b41f67237007b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Wed, 8 Jan 2003 20:38:39 +0000 Subject: Remove variable owned from PyUnicode_FromEncodedObject, which is unused (except for Py_DECREF calls) since the introduction of __unicode__. --- Objects/unicodeobject.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 8dcec51..1e4907a 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -452,7 +452,6 @@ PyObject *PyUnicode_FromEncodedObject(register PyObject *obj, { const char *s = NULL; int len; - int owned = 0; PyObject *v; if (obj == NULL) { @@ -510,15 +509,9 @@ PyObject *PyUnicode_FromEncodedObject(register PyObject *obj, else v = PyUnicode_Decode(s, len, encoding, errors); - if (owned) { - Py_DECREF(obj); - } return v; onError: - if (owned) { - Py_DECREF(obj); - } return NULL; } -- cgit v0.12