summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapimodule.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-07 01:02:42 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-07 01:02:42 (GMT)
commitbeb4135b8c81e1dbbb841ecd7355ab5a09a3edd2 (patch)
tree5477c04eae02035c7d3df9efb50f3a7fc6dd78a1 /Modules/_testcapimodule.c
parentef12810f0c23a0c0e8b276e76d289f0f211ab5bb (diff)
downloadcpython-beb4135b8c81e1dbbb841ecd7355ab5a09a3edd2.zip
cpython-beb4135b8c81e1dbbb841ecd7355ab5a09a3edd2.tar.gz
cpython-beb4135b8c81e1dbbb841ecd7355ab5a09a3edd2.tar.bz2
PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*
All unicode functions uses PyObject* except PyUnicode_AsWideChar(). Fix the prototype for the new function PyUnicode_AsWideCharString().
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r--Modules/_testcapimodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index 912ba17..473d805 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -1426,7 +1426,7 @@ unicode_aswidecharstring(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, "U", &unicode))
return NULL;
- buffer = PyUnicode_AsWideCharString((PyUnicodeObject*)unicode, &size);
+ buffer = PyUnicode_AsWideCharString(unicode, &size);
if (buffer == NULL)
return NULL;