From: Marc-André Lemburg Date: Sat, 10 Jul 2004 12:04:20 +0000 (+0000) Subject: Fix a copy&paste typo. X-Git-Tag: v2.4a2~351 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=126b44cd414c779c9c85743af5d407188947f378;p=python Fix a copy&paste typo. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 2952c95fcf..00ccea8d4c 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -4962,7 +4962,7 @@ as well as any other name registerd with codecs.register_error that is\n\ able to handle UnicodeDecodeErrors."); static PyObject * -unicode_decode(PyStringObject *self, PyObject *args) +unicode_decode(PyUnicodeObject *self, PyObject *args) { char *encoding = NULL; char *errors = NULL;