summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-06-06 15:50:17 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-06-06 15:50:17 (GMT)
commitbb21b2c50c1b0763c76da95733c253a3408e8aba (patch)
treeeba348f52d53a5dfe0374389425a1a7738ae00d5
parent56dab85022026ccfbc73bf1657ca71c5649792a6 (diff)
downloadcpython-bb21b2c50c1b0763c76da95733c253a3408e8aba.zip
cpython-bb21b2c50c1b0763c76da95733c253a3408e8aba.tar.gz
cpython-bb21b2c50c1b0763c76da95733c253a3408e8aba.tar.bz2
BSequence_set_range(): Rev 46688 ("Fix a bunch of
parameter strings") changed this function's signature seemingly by mistake, which is causing buildbots to fail test_bsddb3. Restored the pre-46688 signature.
-rw-r--r--Modules/_bsddb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index 0822aa9..04e5af6 100644
--- a/Modules/_bsddb.c
+++ b/Modules/_bsddb.c
@@ -5012,7 +5012,7 @@ DBSequence_set_range(DBSequenceObject* self, PyObject* args)
{
int err;
db_seq_t min, max;
- if (!PyArg_ParseTuple(args,"LL:set_range", &min, &max))
+ if (!PyArg_ParseTuple(args,"(LL):set_range", &min, &max))
return NULL;
CHECK_SEQUENCE_NOT_CLOSED(self)