summaryrefslogtreecommitdiff
path: root/aerialvision/lexyaccbookmark.py
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2025-02-10 17:35:31 -0800
committerGitHub <[email protected]>2025-02-10 17:35:31 -0800
commit0e39753a623978eb37bf044b21fde1a5909bff03 (patch)
tree13416ab3a165dde580fe847b06bde7c966482088 /aerialvision/lexyaccbookmark.py
parent6b244a5d3be7811f16c312905c1c7fee137ac7a4 (diff)
parent48af0c94ca6d7b05f800f535b3de4cefafcfa655 (diff)
Merge pull request #313 from accel-sim/dev
Purdue Updates Merging
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
+