From bb21b2c50c1b0763c76da95733c253a3408e8aba Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 6 Jun 2006 15:50:17 +0000 Subject: [PATCH] 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. --- Modules/_bsddb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c index 0822aa9886c..04e5af64934 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)