SF patch #670423: Add missing identity tests to operator.c
diff --git a/Misc/NEWS b/Misc/NEWS
index 30b4902..349712f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -517,6 +517,11 @@
Extension modules
-----------------
+- 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.
- A module zipimport exists to support importing code from zip
@@ -733,8 +738,6 @@
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.
Returns a k length list of unique elements chosen from the population.