summaryrefslogtreecommitdiff
path: root/ext/ply/test/lex_error1.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ply/test/lex_error1.py')
-rw-r--r--ext/ply/test/lex_error1.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/ply/test/lex_error1.py b/ext/ply/test/lex_error1.py
index a99d9bedf..4508a8084 100644
--- a/ext/ply/test/lex_error1.py
+++ b/ext/ply/test/lex_error1.py
@@ -1,9 +1,9 @@
-# lex_token.py
+# lex_error1.py
#
# Missing t_error() rule
import sys
-sys.path.insert(0,"..")
+if ".." not in sys.path: sys.path.insert(0,"..")
import ply.lex as lex
@@ -17,7 +17,7 @@ t_PLUS = r'\+'
t_MINUS = r'-'
t_NUMBER = r'\d+'
-sys.tracebacklimit = 0
+
lex.lex()