We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d95a50 commit a7927edCopy full SHA for a7927ed
2 files changed
extras/py3k/Makefile
@@ -1,4 +1,4 @@
1
-2TO3=2to3
+2TO3=2to3-3.1
2
3
all: sqlparse tests
4
tests/utils.py
@@ -28,7 +28,7 @@ class TestCaseBase(unittest.TestCase):
28
# Adopted from Python's tests.
29
def ndiffAssertEqual(self, first, second):
30
"""Like failUnlessEqual except use ndiff for readable output."""
31
- if first <> second:
+ if first != second:
32
sfirst = unicode(first)
33
ssecond = unicode(second)
34
diff = difflib.ndiff(sfirst.splitlines(), ssecond.splitlines())
0 commit comments