1
0
forked from VimPlug/jedi

Fixed issues with the Python3.4 grammar file.

The order of symbols matters. 'file_input' needs to be the first symbol.
This commit is contained in:
Dave Halter
2014-10-17 01:34:47 +02:00
parent ae8969a0d1
commit 19acdd32b7
5 changed files with 27 additions and 13 deletions
+2 -1
View File
@@ -62,7 +62,8 @@ COMMENT = 52
NL = 53
RARROW = 54
ERRORTOKEN = 55
N_TOKENS = 56
ELLIPSIS = 56
N_TOKENS = 57
NT_OFFSET = 256
#--end constants--