remove c++ style comment

This commit is contained in:
Gregory P. Smith 2005-06-16 19:01:42 +00:00
parent fad4640142
commit 8966d3de70

View file

@ -2027,7 +2027,7 @@ _db_compareCallback (DB* db,
result = PyEval_CallObject (self->btCompareCallback, args); result = PyEval_CallObject (self->btCompareCallback, args);
if (result == 0) { if (result == 0) {
/* we're in a callback within the DB code, we can't raise */ /* 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); res = _default_cmp (leftKey, rightKey);
} }
else if (PyInt_Check (result)) { else if (PyInt_Check (result)) {