summaryrefslogtreecommitdiff
path: root/Modules/unicodedata.c
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
commitee2e3ad63a816e85268f92d8dfc463b588d34d8d (patch)
treeb56c9f540b367e010772ec2d3882b3529877a9c4 /Modules/unicodedata.c
parent3d67888da3e926f5f502bc2a3ff879b3eeaf6ef6 (diff)
downloadcpython-ee2e3ad63a816e85268f92d8dfc463b588d34d8d.tar.gz
Fix typo.
Diffstat (limited to 'Modules/unicodedata.c')
-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;