remove c++ style comment

This commit is contained in:
Gregory P. Smith 2005-06-16 19:01:42 +00:00
parent fad4640142
commit 8966d3de70
1 changed files with 1 additions and 1 deletions

View File

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