File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ description = "Boriel's ZX BASIC Compiler"
55authors = [" Jose Rodriguez <boriel@gmail.com>" ]
66license = " GPL-3.0-or-later"
77documentation = " https://zxbasic.readthedocs.io"
8+ repository = " https://github.com/boriel/zxbasic"
89
910classifiers = [
1011 # How mature is this project? Common values are
Original file line number Diff line number Diff line change 3737 'author_email' : 'boriel@gmail.com' ,
3838 'maintainer' : None ,
3939 'maintainer_email' : None ,
40- 'url' : None ,
40+ 'url' : 'https://github.com/boriel/zxbasic' ,
4141 'packages' : packages ,
4242 'package_data' : package_data ,
4343 'entry_points' : entry_points ,
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ def t_ADDR(self, t):
325325 return t
326326
327327 def t_LP (self , t ):
328- r'[[(]'
328+ r'[\ [(]'
329329 if t .value != '[' and OPTIONS .bracket .value :
330330 t .type = 'LPP'
331331 return t
You can’t perform that action at this time.
0 commit comments