Permalink
Browse files

Fix build by disabling unused import.

  • Loading branch information...
Andy Chu
Andy Chu committed May 29, 2018
1 parent 7044954 commit 56ea93670906dc5f7c8990a227851d219f44f590
Showing with 1 addition and 1 deletion.
  1. +1 −1 core/lexer_gen.py
View
@@ -5,7 +5,6 @@
"""
import cStringIO
import pprint
import sys
import sre_parse
import sre_constants
@@ -176,6 +175,7 @@ def TranslateTree(re_tree, f, in_char_class=False):
def TranslateRegex(pat):
re_tree = sre_parse.parse(pat)
# For debugging
#import pprint
#print(pprint.pformat(re_tree), file=sys.stderr)
f = cStringIO.StringIO()
TranslateTree(re_tree, f)

0 comments on commit 56ea936

Please sign in to comment.