summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2004-07-15 04:30:25 +0000
committerHye-Shik Chang <hyeshik@gmail.com>2004-07-15 04:30:25 +0000
commit69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa (patch)
tree11c8246b156e1c445575c0de552830f847ac85a3 /Modules
parent5960d80e119e6ba67bc4e954998a7f9d8595df98 (diff)
downloadcpython-git-69dc1c8f6a6deffbc6fa076d9df4ffc3e3d85afa.tar.gz
Fix typo.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/unicodedata.c2
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;