summaryrefslogtreecommitdiff
path: root/ext/ply/test/yacc_sr.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ply/test/yacc_sr.py')
-rw-r--r--ext/ply/test/yacc_sr.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/ply/test/yacc_sr.py b/ext/ply/test/yacc_sr.py
index 4341f6997..e2f03ec74 100644
--- a/ext/ply/test/yacc_sr.py
+++ b/ext/ply/test/yacc_sr.py
@@ -6,6 +6,9 @@
import sys
sys.tracebacklimit = 0
+sys.path.insert(0,"..")
+import ply.yacc as yacc
+
from calclex import tokens
# Parsing rules
@@ -54,7 +57,6 @@ def p_expression_name(t):
def p_error(t):
print "Syntax error at '%s'" % t.value
-import yacc
yacc.yacc()