summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2005-06-16 19:01:42 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2005-06-16 19:01:42 (GMT)
commit8966d3de70521a60fa3d658e8c72db9ed63283a6 (patch)
tree896e4dfdfd972567adcaad89b057f6bb326b14b0
parentfad46401423591da4fa10117e572f9292348055d (diff)
downloadcpython-8966d3de70521a60fa3d658e8c72db9ed63283a6.zip
cpython-8966d3de70521a60fa3d658e8c72db9ed63283a6.tar.gz
cpython-8966d3de70521a60fa3d658e8c72db9ed63283a6.tar.bz2
remove c++ style comment
-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)) {