[Python-checkins] python/dist/src/Modules _bsddb.c,1.45,1.46

greg@users.sourceforge.net greg at users.sourceforge.net
Thu Jun 16 21:01:45 CEST 2005


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6945/extsrc

Modified Files:
	_bsddb.c 
Log Message:
remove c++ style comment


Index: _bsddb.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_bsddb.c,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- _bsddb.c	6 Jun 2005 17:31:32 -0000	1.45
+++ _bsddb.c	16 Jun 2005 19:01:42 -0000	1.46
@@ -2027,7 +2027,7 @@
 	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)) {



More information about the Python-checkins mailing list