diff options
author | Guido van Rossum <guido@python.org> | 2007-03-27 22:37:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-03-27 22:37:34 (GMT) |
commit | e27dc7230845aa341d9a0bf323fa14912713cf33 (patch) | |
tree | 80e5451f5dac1bc5ac01ee3b70eaf9aff0461f31 /Misc | |
parent | a4335b1e6bc357fb6a3d54298e74a1d957028bc3 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |