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