[Python-checkins] python/dist/src/Misc NEWS,1.674,1.675

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sun, 23 Feb 2003 15:11:44 -0800


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

Modified Files:
	NEWS 
Log Message:
Fix SF bug #689659, 64-bit int and long hash keys incompatible

On a 64-bit machine, a dictionary could contain duplicate int/long keys
if the value was > 2**32.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.674
retrieving revision 1.675
diff -C2 -d -r1.674 -r1.675
*** NEWS	23 Feb 2003 04:40:06 -0000	1.674
--- NEWS	23 Feb 2003 23:11:41 -0000	1.675
***************
*** 13,17 ****
  -----------------
  
! TBD
  
  Extension modules
--- 13,18 ----
  -----------------
  
! - On 64-bit systems, a dictionary could contain duplicate long/int keys
!   if the key value was larger than 2**32.  See SF bug #689659.
  
  Extension modules