diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-07 19:57:46 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-07 19:57:46 (GMT) |
commit | 7eeb5b5e5017cf1354b084327b49390044946069 (patch) | |
tree | 6105fb6e6fa76d1d0e3c4d6e987b91aa623f7fc3 /Modules/_ctypes | |
parent | fa68a6188a16562c1b4ba8cf879ce49decba5546 (diff) | |
download | cpython-7eeb5b5e5017cf1354b084327b49390044946069.zip cpython-7eeb5b5e5017cf1354b084327b49390044946069.tar.gz cpython-7eeb5b5e5017cf1354b084327b49390044946069.tar.bz2 |
Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#
Diffstat (limited to 'Modules/_ctypes')
-rw-r--r-- | Modules/_ctypes/_ctypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c index c1b3093..e84bb8a 100644 --- a/Modules/_ctypes/_ctypes.c +++ b/Modules/_ctypes/_ctypes.c @@ -4467,7 +4467,7 @@ PyCArrayType_from_ctype(PyObject *itemtype, Py_ssize_t length) #endif result = PyObject_CallFunction((PyObject *)&PyCArrayType_Type, - "U(O){s:n,s:O}", + "s(O){s:n,s:O}", name, &PyCArray_Type, "_length_", |