summaryrefslogtreecommitdiff
path: root/ext/ply/test/lex_token5.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ply/test/lex_token5.py')
-rw-r--r--ext/ply/test/lex_token5.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/ply/test/lex_token5.py b/ext/ply/test/lex_token5.py
index d9b0c96aa..77fabdee9 100644
--- a/ext/ply/test/lex_token5.py
+++ b/ext/ply/test/lex_token5.py
@@ -2,7 +2,10 @@
#
# Return a bad token name
-import lex
+import sys
+sys.path.insert(0,"..")
+
+import ply.lex as lex
tokens = [
"PLUS",
@@ -21,7 +24,6 @@ def t_NUMBER(t):
def t_error(t):
pass
-import sys
sys.tracebacklimit = 0
lex.lex()