Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad4640 commit 8966d3dCopy full SHA for 8966d3d
1 file changed
Modules/_bsddb.c
@@ -2027,7 +2027,7 @@ _db_compareCallback (DB* db,
2027
result = PyEval_CallObject (self->btCompareCallback, args);
2028
if (result == 0) {
2029
/* we're in a callback within the DB code, we can't raise */
2030
- PyErr_Print (); // XXX-gps or can we? either way the DB is screwed
+ PyErr_Print ();
2031
res = _default_cmp (leftKey, rightKey);
2032
}
2033
else if (PyInt_Check (result)) {
0 commit comments