summaryrefslogtreecommitdiff
path: root/ext/ply/test/lex_token1.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ply/test/lex_token1.py')
-rw-r--r--ext/ply/test/lex_token1.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/ply/test/lex_token1.py b/ext/ply/test/lex_token1.py
index e8eca2b63..380c31ce1 100644
--- a/ext/ply/test/lex_token1.py
+++ b/ext/ply/test/lex_token1.py
@@ -2,7 +2,10 @@
#
# Tests for absence of tokens variable
-import lex
+import sys
+sys.path.insert(0,"..")
+
+import ply.lex as lex
t_PLUS = r'\+'
t_MINUS = r'-'
@@ -11,7 +14,6 @@ t_NUMBER = r'\d+'
def t_error(t):
pass
-import sys
sys.tracebacklimit = 0
lex.lex()