[Python-checkins] r46694 - python/trunk/Modules/_bsddb.c
tim.peters
python-checkins at python.org
Tue Jun 6 17:50:18 CEST 2006
Author: tim.peters
Date: Tue Jun 6 17:50:17 2006
New Revision: 46694
Modified:
python/trunk/Modules/_bsddb.c
Log:
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.
Modified: python/trunk/Modules/_bsddb.c
==============================================================================
--- python/trunk/Modules/_bsddb.c (original)
+++ python/trunk/Modules/_bsddb.c Tue Jun 6 17:50:17 2006
@@ -5012,7 +5012,7 @@
{
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)
More information about the Python-checkins
mailing list