s_methods[]: Stop compiler warnings by casting

s_unpack_from to PyCFunction.
This commit is contained in:
Tim Peters 2006-06-04 15:49:07 +00:00
parent fb2a169ce3
commit 5ec2e85d0c
1 changed files with 2 additions and 1 deletions

View File

@ -1669,7 +1669,8 @@ static struct PyMethodDef s_methods[] = {
{"pack", s_pack, METH_VARARGS, s_pack__doc__},
{"pack_into", s_pack_into, METH_VARARGS, s_pack_into__doc__},
{"unpack", s_unpack, METH_O, s_unpack__doc__},
{"unpack_from", s_unpack_from, METH_KEYWORDS, s_unpack_from__doc__},
{"unpack_from", (PyCFunction)s_unpack_from, METH_KEYWORDS,
s_unpack_from__doc__},
{NULL, NULL} /* sentinel */
};