diff options
| author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-07-15 04:30:25 +0000 |
|---|---|---|
| committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-07-15 04:30:25 +0000 |
| commit | 69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa (patch) | |
| tree | 11c8246b156e1c445575c0de552830f847ac85a3 | |
| parent | 5960d80e119e6ba67bc4e954998a7f9d8595df98 (diff) | |
| download | cpython-git-69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa.tar.gz | |
Fix typo.
| -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 ba218a3e58..8aa18f2336 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; |
