diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2005-06-16 19:01:42 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2005-06-16 19:01:42 (GMT) |
commit | 8966d3de70521a60fa3d658e8c72db9ed63283a6 (patch) | |
tree | 896e4dfdfd972567adcaad89b057f6bb326b14b0 /Modules | |
parent | fad46401423591da4fa10117e572f9292348055d (diff) | |
download | cpython-8966d3de70521a60fa3d658e8c72db9ed63283a6.zip cpython-8966d3de70521a60fa3d658e8c72db9ed63283a6.tar.gz cpython-8966d3de70521a60fa3d658e8c72db9ed63283a6.tar.bz2 |
remove c++ style comment
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_bsddb.c | 2 |
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)) { |