From 126b44cd414c779c9c85743af5d407188947f378 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Sat, 10 Jul 2004 12:04:20 +0000 Subject: [PATCH] Fix a copy&paste typo. --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1