summaryrefslogtreecommitdiff
path: root/Modules/md5module.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-03-31 15:27:00 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2002-03-31 15:27:00 +0000
commit81bea7c04c588b2dfcd68810dcdd0d3ed4d10e64 (patch)
tree0c20df62499c29cddcd34b14fd9c6cd588a0daf9 /Modules/md5module.c
parent467d11d4c82d7a79c8388a3ea7c025c02f4dc572 (diff)
downloadcpython-81bea7c04c588b2dfcd68810dcdd0d3ed4d10e64.tar.gz
Remove METH_OLDARGS:
Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple Convert METH_OLDARGS -> METH_NOARGS: remove args parameter Please review. All tests pass, but some modules don't have tests. I spot checked various functions to try to make sure nothing broke.
Diffstat (limited to 'Modules/md5module.c')
-rw-r--r--Modules/md5module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/md5module.c b/Modules/md5module.c
index fb904f49f5..a6068ff23f 100644
--- a/Modules/md5module.c
+++ b/Modules/md5module.c
@@ -52,7 +52,7 @@ md5_update(md5object *self, PyObject *args)
unsigned char *cp;
int len;
- if (!PyArg_Parse(args, "s#", &cp, &len))
+ if (!PyArg_ParseTuple(args, "s#:update", &cp, &len))
return NULL;
MD5Update(&self->md5, cp, len);
@@ -142,7 +142,7 @@ Return a copy (``clone'') of the md5 object.";
static PyMethodDef md5_methods[] = {
- {"update", (PyCFunction)md5_update, METH_OLDARGS, update_doc},
+ {"update", (PyCFunction)md5_update, METH_VARARGS, update_doc},
{"digest", (PyCFunction)md5_digest, METH_NOARGS, digest_doc},
{"hexdigest", (PyCFunction)md5_hexdigest, METH_NOARGS, hexdigest_doc},
{"copy", (PyCFunction)md5_copy, METH_NOARGS, copy_doc},