mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
Oops! 2.6's Rational.__ne__ didn't work.
This commit is contained in:
parent
b01aa430d5
commit
27d339446a
2 changed files with 6 additions and 1 deletions
|
@ -313,6 +313,8 @@ class RationalTest(unittest.TestCase):
|
|||
self.assertFalse(R(2, 3) <= R(1, 2))
|
||||
self.assertTrue(R(1, 2) == R(1, 2))
|
||||
self.assertFalse(R(1, 2) == R(1, 3))
|
||||
self.assertFalse(R(1, 2) != R(1, 2))
|
||||
self.assertTrue(R(1, 2) != R(1, 3))
|
||||
|
||||
def testMixedLess(self):
|
||||
self.assertTrue(2 < R(5, 2))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue