aboutsummaryrefslogtreecommitdiff
path: root/aerialvision/lexyaccbookmark.py
diff options
context:
space:
mode:
authorJRPan <[email protected]>2023-06-13 20:40:07 +0800
committerGitHub <[email protected]>2023-06-13 20:40:07 +0800
commitb0e65fef7e1620a43fb2ba480ad74de8d7919bdd (patch)
treea7ab7a51578a9247f5ec082cae87e828db95f80d /aerialvision/lexyaccbookmark.py
parent8ca01b0721445de3b044e70327fd69f017a75ef0 (diff)
parentb471b3481b2399222ffd9ee0f007628834e68767 (diff)
Merge branch 'dev' into dev
Diffstat (limited to 'aerialvision/lexyaccbookmark.py')
-rw-r--r--aerialvision/lexyaccbookmark.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/aerialvision/lexyaccbookmark.py b/aerialvision/lexyaccbookmark.py
index 42c6b40..7aa2f80 100644
--- a/aerialvision/lexyaccbookmark.py
+++ b/aerialvision/lexyaccbookmark.py
@@ -108,7 +108,7 @@ def parseMe():
def t_error(t):
- print "Illegal character '%s'" % t.value[0]
+ print("Illegal character '%s'" % t.value[0])
t.lexer.skip(1)
lex.lex()
@@ -150,7 +150,7 @@ def parseMe():
pass
else:
- print 'An Parsing Error has occurred'
+ print('An Parsing Error has occurred')
@@ -159,7 +159,7 @@ def parseMe():
def p_error(p):
if p:
- print("Syntax error at '%s'" % p.value)
+ print(("Syntax error at '%s'" % p.value))
else:
print("Syntax error at EOF")
@@ -168,7 +168,7 @@ def parseMe():
try:
file = open(os.environ['HOME'] + '/.gpgpu_sim/aerialvision/bookmarks.txt', 'r')
inputData = file.readlines()
- except IOError,e:
+ except IOError as e:
if e.errno == 2:
inputData = ''
else:
@@ -178,3 +178,4 @@ def parseMe():
yacc.parse(x[0:-1]) # ,debug=True)
return listBookmarks
+