expand spaces

This commit is contained in:
Matthias Urlichs 2014-05-16 10:20:20 +02:00
parent 7b819c931c
commit 3f3785c8dc

View file

@ -15,9 +15,9 @@ import os, sys, re, types
#from six import string_types
PY2 = sys.version_info[0] == 2
if PY2:
string_types = (basestring,)
string_types = (basestring,)
else:
string_types = (str,)
string_types = (str,)
try: from yapps import runtime, parsetree, grammar
except ImportError: