Update to ply 2.3
[gem5.git] / ext / ply / test / yacc_term1.py
index 97a2e7a60ea775332735ed1ad301875e72d7eb59..bbc52da8629b3b814b201e5e0faa38d98cf43f7d 100644 (file)
@@ -6,6 +6,9 @@
 import sys
 sys.tracebacklimit = 0
 
+sys.path.insert(0,"..")
+import ply.yacc as yacc
+
 from calclex import tokens
 
 # Parsing rules
@@ -59,7 +62,6 @@ def p_expression_name(t):
 def p_error(t):
     print "Syntax error at '%s'" % t.value
 
-import yacc
 yacc.yacc()