summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-10-25 06:41:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-10-25 06:41:37 (GMT)
commit5cf6394b126bcbc7a3e97d88b8b2d6fd51f3bee7 (patch)
tree8562a3674472af98808947e8552943763d142113 /Python/bltinmodule.c
parent4514369f27c8c81af0736782c98689457df39ed5 (diff)
downloadcpython-5cf6394b126bcbc7a3e97d88b8b2d6fd51f3bee7.zip
cpython-5cf6394b126bcbc7a3e97d88b8b2d6fd51f3bee7.tar.gz
cpython-5cf6394b126bcbc7a3e97d88b8b2d6fd51f3bee7.tar.bz2
Use PyArg_UnpackTuple() where possible.
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 29804f5..0309f1de 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1806,7 +1806,7 @@ builtin_sum(PyObject *self, PyObject *args)
PyObject *result = NULL;
PyObject *temp, *item, *iter;
- if (!PyArg_ParseTuple(args, "O|O:sum", &seq, &result))
+ if (!PyArg_UnpackTuple(args, "sum", 1, 2, &seq, &result))
return NULL;
iter = PyObject_GetIter(seq);