Skip to content

Commit 726f249

Browse files
authored
Merge pull request #320 from boriel/feature/fix_futurewarning
Feature/fix futurewarning
2 parents 74a5d35 + be1bf9c commit 726f249

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description = "Boriel's ZX BASIC Compiler"
55
authors = ["Jose Rodriguez <boriel@gmail.com>"]
66
license = "GPL-3.0-or-later"
77
documentation = "https://zxbasic.readthedocs.io"
8+
repository = "https://github.com/boriel/zxbasic"
89

910
classifiers = [
1011
# How mature is this project? Common values are

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
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,

zxbasm/asmlex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)