We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f1ff7e commit ddedcb9Copy full SHA for ddedcb9
tests/test_past/test_misc.py
@@ -30,7 +30,7 @@ class TestCmp(unittest.TestCase):
30
def test_cmp(self):
31
for x, y, cmp_python2_value in test_values.cmp_python2_value:
32
if PY26:
33
- # set comparison works a bit differently in 2.6
+ # set cmp works a bit differently in 2.6, we try to emulate 2.7 behavior, so skip set cmp tests
34
if isinstance(x, set) or isinstance(y, set):
35
continue
36
# to get this to run on python <3.4 which lacks subTest
0 commit comments