summaryrefslogtreecommitdiff
path: root/Lib/test/test_compare.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-5/+1
* Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-2/+63
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+0
* Issue #1393: object_richcompare() returns NotImplemented instead ofGuido van Rossum2008-01-061-0/+16
* By default, != returns the opposite of ==, unless the latter returnsGuido van Rossum2007-03-271-0/+6
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-3/+3
* __coerce__ is gone, there's nothing to test.Neal Norwitz2006-04-301-14/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-23/+28
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-2/+0
* The first batch of changes recommended by the fixdiv tool. These areGuido van Rossum2001-09-041-1/+1
* Repair some accidents causing Windows failures:Tim Peters2001-08-161-1/+1
* Given a class without __cmp__ or __eq__, cmp() of two instances ofGuido van Rossum2001-08-151-0/+8
* __rcmp__ no longer gets called on instances. Remove the test for it.Neil Schemenauer2001-01-041-12/+1
* Use == rather than cmp(). The return value of cmp() is not well defined whenNeil Schemenauer2001-01-031-7/+9
* Add more tests for compare and coercion in preparation for the coercionNeil Schemenauer2001-01-021-0/+57