diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-03-02 00:19:49 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-03-02 00:19:49 (GMT) |
commit | 44f14b039949005ecc93fd8294933c84fab6f374 (patch) | |
tree | e68c8735baa42a015f34cd37c2d3c89020f8ee97 /Misc/NEWS | |
parent | 3ba491e6b1747707374e56fd9f0fb958b2aafcd5 (diff) | |
download | cpython-44f14b039949005ecc93fd8294933c84fab6f374.zip cpython-44f14b039949005ecc93fd8294933c84fab6f374.tar.gz cpython-44f14b039949005ecc93fd8294933c84fab6f374.tar.bz2 |
SF bug 693121: Set == non-Set is a TypeError.
Allow mixed-type __eq__ and __ne__ for Set objects. This is messier than
I'd like because Set *also* implements __cmp__. I know of one glitch now:
cmp(s, t) returns 0 now when s and t are both Sets and s == t, despite
that Set.__cmp__ unconditionally raises TypeError (and by intent). The
rub is that __eq__ gets tried first, and the x.__eq__(y) True result
convinces Python that cmp(x, y) is 0 without even calling Set.__cmp__.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -31,6 +31,13 @@ Extension modules Library ------- +- sets.Set objects now support mixed-type __eq__ and __ne__, instead + of raising TypeError. If x is a Set object and y is a non-Set object, + x == y is False, and x != y is True. This is akin to the change made + for mixed-type comparisons of datetime objects in 2.3a2; more info + about the rationale is in the NEWS entry for that. See also SF bug + report <http://www.python.org/sf/693121>. + - os.listdir() now returns Unicode strings on platforms that set Py_FileSystemDefaultEncoding, for file names that are not representable in ASCII. (This currently only affects MacOS X; on Windows versions @@ -83,7 +90,7 @@ Mac - A new method MacOS.WMAvailable() returns true if it is safe to access the window manager, false otherwise. - + - EasyDialogs dialogs are now movable-modal. @@ -343,8 +350,8 @@ Library - the platform dependent path related variables sep, altsep, extsep, pathsep, curdir, pardir and defpath are now defined in the platform dependent path modules (e.g. ntpath.py) rather than os.py, so these - variables are now available via os.path. They continue to be - available from the os module. + variables are now available via os.path. They continue to be + available from the os module. (see <http://www.python.org/sf/680789>). - array.array was added to the types repr.py knows about (see @@ -499,12 +506,12 @@ Mac - Type Carbon.File.FSCatalogInfo and supporting methods have been implemented. This also makes macfs.FSSpec.SetDates() work again. - + - There is a new module pimp, the package install manager for Python, and accompanying applet PackageManager. These allow you to easily download and install pretested extension packages either in source or binary form. Only in MacPython-OSX. - + - Applets are now built with bundlebuilder in MacPython-OSX, which should make them more robust and also provides a path towards BuildApplication. The downside of this change is that applets can no longer be run from the |