summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-03-27 22:37:34 (GMT)
committerGuido van Rossum <guido@python.org>2007-03-27 22:37:34 (GMT)
commite27dc7230845aa341d9a0bf323fa14912713cf33 (patch)
tree80e5451f5dac1bc5ac01ee3b70eaf9aff0461f31 /Misc
parenta4335b1e6bc357fb6a3d54298e74a1d957028bc3 (diff)
downloadcpython-e27dc7230845aa341d9a0bf323fa14912713cf33.zip
cpython-e27dc7230845aa341d9a0bf323fa14912713cf33.tar.gz
cpython-e27dc7230845aa341d9a0bf323fa14912713cf33.tar.bz2
By default, != returns the opposite of ==, unless the latter returns
NotImplemented. (Is this worth backporting to 2.6? It seems so useful...!)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c2699ec..4f647d2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,9 @@ TO DO
Core and Builtins
-----------------
+- By default, != returns the opposite of ==, unless the latter returns
+ NotImplemented.
+
- Patch #1680961: sys.exitfunc has been removed and replaced with a private
C-level API.