summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 4f78b4c..a24b3ce 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -52,7 +52,7 @@ def fcmp(x, y): # fuzzy comparison function
elif type(x) == type(y) and type(x) in (type(()), type([])):
for i in range(min(len(x), len(y))):
outcome = fcmp(x[i], y[i])
- if outcome <> 0:
+ if outcome != 0:
return outcome
return cmp(len(x), len(y))
return cmp(x, y)