summaryrefslogtreecommitdiffstats
path: root/Modules/_bsddb.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_bsddb.c')
-rw-r--r--Modules/_bsddb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index 775457b..6b4f84b 100644
--- a/Modules/_bsddb.c
+++ b/Modules/_bsddb.c
@@ -2027,7 +2027,7 @@ _db_compareCallback (DB* db,
result = PyEval_CallObject (self->btCompareCallback, args);
if (result == 0) {
/* we're in a callback within the DB code, we can't raise */
- PyErr_Print (); // XXX-gps or can we? either way the DB is screwed
+ PyErr_Print ();
res = _default_cmp (leftKey, rightKey);
}
else if (PyInt_Check (result)) {