diff options
author | Guido van Rossum <guido@python.org> | 2000-02-29 13:59:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-29 13:59:29 (GMT) |
commit | 43713e5a2899930a8698e244b0d0fef59a676d17 (patch) | |
tree | 3d9740aff47f70cea403a2c924a37b468d1eded6 /Modules/structmodule.c | |
parent | a9b2b4be26df7c3da8a20d1a5f4d2b796e455b4b (diff) | |
download | cpython-43713e5a2899930a8698e244b0d0fef59a676d17.zip cpython-43713e5a2899930a8698e244b0d0fef59a676d17.tar.gz cpython-43713e5a2899930a8698e244b0d0fef59a676d17.tar.bz2 |
Massive patch by Skip Montanaro to add ":name" to as many
PyArg_ParseTuple() format string arguments as possible.
Diffstat (limited to 'Modules/structmodule.c')
-rw-r--r-- | Modules/structmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/structmodule.c b/Modules/structmodule.c index 9994d20..0a706a9 100644 --- a/Modules/structmodule.c +++ b/Modules/structmodule.c @@ -1097,7 +1097,7 @@ struct_calcsize(self, args) const formatdef *f; int size; - if (!PyArg_ParseTuple(args, "s", &fmt)) + if (!PyArg_ParseTuple(args, "s:calcsize", &fmt)) return NULL; f = whichtable(&fmt); size = calcsize(fmt, f); @@ -1262,7 +1262,7 @@ struct_unpack(self, args) int len, size, num; PyObject *res, *v; - if (!PyArg_ParseTuple(args, "ss#", &fmt, &start, &len)) + if (!PyArg_ParseTuple(args, "ss#:unpack", &fmt, &start, &len)) return NULL; f = whichtable(&fmt); size = calcsize(fmt, f); |