summaryrefslogtreecommitdiff
path: root/ext/ply/test/yacc_inf.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ply/test/yacc_inf.py')
-rw-r--r--ext/ply/test/yacc_inf.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/ext/ply/test/yacc_inf.py b/ext/ply/test/yacc_inf.py
index 9b9aef75d..efd3612a1 100644
--- a/ext/ply/test/yacc_inf.py
+++ b/ext/ply/test/yacc_inf.py
@@ -4,9 +4,8 @@
# Infinite recursion
# -----------------------------------------------------------------------------
import sys
-sys.tracebacklimit = 0
-sys.path.insert(0,"..")
+if ".." not in sys.path: sys.path.insert(0,"..")
import ply.yacc as yacc
from calclex import tokens
@@ -27,7 +26,7 @@ def p_statement_assign(t):
def p_statement_expr(t):
'statement : expression'
- print t[1]
+ print(t[1])
def p_expression_binop(t):
'''expression : expression PLUS expression
@@ -37,7 +36,7 @@ def p_expression_binop(t):
if t[2] == '+' : t[0] = t[1] + t[3]
elif t[2] == '-': t[0] = t[1] - t[3]
elif t[2] == '*': t[0] = t[1] * t[3]
- elif t[3] == '/': t[0] = t[1] / t[3]
+ elif t[2] == '/': t[0] = t[1] / t[3]
def p_expression_uminus(t):
'expression : MINUS expression %prec UMINUS'
@@ -48,7 +47,7 @@ def p_expression_group(t):
t[0] = t[2]
def p_error(t):
- print "Syntax error at '%s'" % t.value
+ print("Syntax error at '%s'" % t.value)
yacc.yacc()