Kaydet (Commit) 034d9760 authored tarafından Walter Dörwald's avatar Walter Dörwald

Remove variable owned from PyUnicode_FromEncodedObject, which is unused

(except for Py_DECREF calls) since the introduction of __unicode__.
üst 8a978f7c
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment