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.
This commit is contained in:
Tim Peters 2006-06-06 15:50:17 +00:00
parent 56dab85022
commit bb21b2c50c
1 changed files with 1 additions and 1 deletions

View File

@ -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)