]> granicus.if.org Git - python/commit
Restructure comparison dramatically. There is no longer a default
authorGuido van Rossum <guido@python.org>
Thu, 24 Aug 2006 00:41:19 +0000 (00:41 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 24 Aug 2006 00:41:19 +0000 (00:41 +0000)
commit47b9ff6ba11fab4c90556357c437cb4feec1e853
treeb5319f74e08caf3276275462b14372b4da9f7dee
parent9a6e62b947ebb5547ca9a164f6145a461b98d86a
Restructure comparison dramatically.  There is no longer a default
*ordering* between objects; there is only a default equality test
(defined by an object being equal to itself only).  Read the comment
in object.c.  The current implementation never uses a three-way
comparison to compute a rich comparison, but it does use a rich
comparison to compute a three-way comparison.  I'm not quite done
ripping out all the calls to PyObject_Compare/Cmp, or replacing
tp_compare implementations with tp_richcompare implementations;
but much of that has happened (to make most unit tests pass).

The following tests still fail, because I need help deciding
or understanding:

test_codeop -- depends on comparing code objects
test_datetime -- need Tim Peters' opinion
test_marshal -- depends on comparing code objects
test_mutants -- need help understanding it

The problem with test_codeop and test_marshal is this: these tests
compare two different code objects and expect them to be equal.
Is that still a feature we'd like to support?  I've temporarily
removed the comparison and hash code from code objects, so they
use the default (equality by pointer only) comparison.

For the other two tests, run them to see for yourself.
(There may be more failing test with "-u all".)

A general problem with getting lots of these tests to pass is
the reality that for object types that have a natural total ordering,
implementing __cmp__ is much more convenient than implementing
__eq__, __ne__, __lt__, and so on.  Should we go back to allowing
__cmp__ to provide a total ordering?  Should we provide some other
way to implement rich comparison with a single method override?
Alex proposed a __key__() method; I've considered a __richcmp__()
method.  Or perhaps __cmp__() just shouldn't be killed off...
57 files changed:
Include/object.h
Lib/StringIO.py
Lib/UserDict.py
Lib/UserString.py
Lib/ctypes/test/test_simplesubclasses.py
Lib/decimal.py
Lib/distutils/version.py
Lib/doctest.py
Lib/optparse.py
Lib/plat-mac/plistlib.py
Lib/pprint.py
Lib/sqlite3/test/types.py
Lib/test/mapping_tests.py
Lib/test/output/test_class
Lib/test/pickletester.py
Lib/test/test_bisect.py
Lib/test/test_buffer.py [new file with mode: 0644]
Lib/test/test_builtin.py
Lib/test/test_calendar.py
Lib/test/test_cgi.py
Lib/test/test_class.py
Lib/test/test_compare.py
Lib/test/test_copy.py
Lib/test/test_decimal.py
Lib/test/test_descr.py
Lib/test/test_descrtut.py
Lib/test/test_dict.py
Lib/test/test_grammar.py
Lib/test/test_heapq.py
Lib/test/test_itertools.py
Lib/test/test_mutants.py
Lib/test/test_operations.py
Lib/test/test_set.py
Lib/test/test_sets.py
Lib/test/test_slice.py
Lib/test/test_sort.py
Lib/test/test_support.py
Lib/test/test_types.py
Lib/test/test_userdict.py
Lib/test/test_weakref.py
Lib/uuid.py
Lib/xmlrpclib.py
Modules/threadmodule.c
Objects/bufferobject.c
Objects/cellobject.c
Objects/classobject.c
Objects/codeobject.c
Objects/dictobject.c
Objects/intobject.c
Objects/listobject.c
Objects/longobject.c
Objects/methodobject.c
Objects/object.c
Objects/sliceobject.c
Objects/typeobject.c
Objects/weakrefobject.c
Python/bltinmodule.c