[Python-checkins] python/dist/src/Modules _bsddb.c,1.27,1.28

niemeyer at users.sourceforge.net niemeyer at users.sourceforge.net
Tue Jan 20 10:24:32 EST 2004


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv20601

Modified Files:
	_bsddb.c 
Log Message:
Removing TODO comment for None keys, as suggested by Neal Norwitz.


Index: _bsddb.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_bsddb.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** _bsddb.c	20 Jan 2004 15:20:03 -0000	1.27
--- _bsddb.c	20 Jan 2004 15:24:29 -0000	1.28
***************
*** 349,353 ****
  
      CLEAR_DBT(*key);
!     if (keyobj == Py_None) {  /* TODO: is None really okay for keys? */
          type = _DB_get_type(self);
          if (type == -1)
--- 349,353 ----
  
      CLEAR_DBT(*key);
!     if (keyobj == Py_None) {
          type = _DB_get_type(self);
          if (type == -1)





More information about the Python-checkins mailing list