[Python-checkins] python/dist/src/Misc NEWS,1.616,1.617

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 18 Jan 2003 15:22:22 -0800


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

Modified Files:
	NEWS 
Log Message:
SF patch #670423: Add missing identity tests to operator.c



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.616
retrieving revision 1.617
diff -C2 -d -r1.616 -r1.617
*** NEWS	15 Jan 2003 11:51:06 -0000	1.616
--- NEWS	18 Jan 2003 23:22:19 -0000	1.617
***************
*** 518,521 ****
--- 518,526 ----
  -----------------
  
+ - Added three operators to the operator module:
+     operator.pow(a,b) which is equivalent to:  a**b.
+     operator.is_(a,b) which is equivalent to:  a is b.
+     operator.is_not(a,b) which is equivalent to:  a is not b.
+ 
  - posix.openpty now works on all systems that have /dev/ptmx.
  
***************
*** 733,738 ****
    or when you need to use sets as dict keys, and a class BaseSet which
    is the base class of the two.
- 
- - Added operator.pow(a,b) which is equivalent to a**b.
  
  - Added random.sample(population,k) for random sampling without replacement.
--- 738,741 ----