diff options
author | Marc-André Lemburg <mal@egenix.com> | 2004-07-10 12:04:20 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2004-07-10 12:04:20 (GMT) |
commit | 126b44cd414c779c9c85743af5d407188947f378 (patch) | |
tree | 8cd03dc9ef6a418691dc8fd6197327e1a5777ae7 /Objects | |
parent | 0d278b861e77b111a5c309a65e6b2fe14533dd20 (diff) | |
download | cpython-126b44cd414c779c9c85743af5d407188947f378.zip cpython-126b44cd414c779c9c85743af5d407188947f378.tar.gz cpython-126b44cd414c779c9c85743af5d407188947f378.tar.bz2 |
Fix a copy&paste typo.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 2952c95..00ccea8 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; |