diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-07-15 04:30:25 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-07-15 04:30:25 (GMT) |
commit | 69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa (patch) | |
tree | 11c8246b156e1c445575c0de552830f847ac85a3 /Modules/unicodedata.c | |
parent | 5960d80e119e6ba67bc4e954998a7f9d8595df98 (diff) | |
download | cpython-69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa.zip cpython-69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa.tar.gz cpython-69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa.tar.bz2 |
Fix typo.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r-- | Modules/unicodedata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c index ba218a3..8aa18f2 100644 --- a/Modules/unicodedata.c +++ b/Modules/unicodedata.c @@ -511,7 +511,7 @@ unicodedata_normalize(PyObject *self, PyObject *args) char *form; PyObject *input; - if(!PyArg_ParseTuple(args, "sO!:normalized", + if(!PyArg_ParseTuple(args, "sO!:normalize", &form, &PyUnicode_Type, &input)) return NULL; |