]> git.phdru.name Git - sqlconvert.git/commitdiff
Fix Python3 compatibility
authorOleg Broytman <phd@phdru.name>
Sat, 27 Aug 2016 13:41:32 +0000 (16:41 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 27 Aug 2016 13:41:32 +0000 (16:41 +0300)
mysql2sql/process_tokens.py

index ddab2bf649eac2e69e67eef48e7b1edbf07b0dea..7e323543f81f9baa5f65444e7edc8327e16d7eb7 100644 (file)
@@ -1,5 +1,6 @@
 
 from sqlparse import parse
+from sqlparse.compat import PY3
 from sqlparse.tokens import Name, Error, Punctuation, Comment, Newline, \
     Whitespace
 
@@ -25,6 +26,10 @@ def find_error(token_list):
     return False
 
 
+if PY3:
+    xrange = range
+
+
 class StatementGrouper(object):
     """Collect lines and reparse until the last statement is complete"""