Don't use the fast parser at the moment. It's more important for now to even get a parser working.

This commit is contained in:
Dave Halter
2014-10-09 14:36:52 +02:00
parent aa75140f96
commit 05fd7f992e
2 changed files with 2 additions and 1 deletions

View File

@@ -137,7 +137,7 @@ On Linux, if environment variable ``$XDG_CACHE_HOME`` is set,
# parser # parser
# ---------------- # ----------------
fast_parser = True fast_parser = False
""" """
Use the fast parser. This means that reparsing is only being done if Use the fast parser. This means that reparsing is only being done if
something has been changed e.g. to a function. If this happens, only the something has been changed e.g. to a function. If this happens, only the

View File

@@ -21,3 +21,4 @@ def test_basic_parsing():
compare('\na #pass\n') compare('\na #pass\n')
compare('wblabla* 1\t\n') compare('wblabla* 1\t\n')
compare('def x(a, b:3): pass\n') compare('def x(a, b:3): pass\n')
compare('assert foo\n')