summaryrefslogtreecommitdiff
path: root/test/lex_error2.py
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2008-05-29 14:00:14 +0000
committerDavid Beazley <dave@dabeaz.com>2008-05-29 14:00:14 +0000
commit3d91085e98cd5d2ddd3822793ab33bbad8287f5c (patch)
tree81d1988b5dec2f2b51c465527a3fe103847808b0 /test/lex_error2.py
parent912137883ba0ec6e0f0390c9664a7918ee529c14 (diff)
downloadply-3d91085e98cd5d2ddd3822793ab33bbad8287f5c.tar.gz
Revamped testing framework
Diffstat (limited to 'test/lex_error2.py')
-rw-r--r--test/lex_error2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lex_error2.py b/test/lex_error2.py
index a59c8d4..8040d39 100644
--- a/test/lex_error2.py
+++ b/test/lex_error2.py
@@ -1,9 +1,9 @@
-# lex_token.py
+# lex_error2.py
#
# t_error defined, but not function
import sys
-sys.path.insert(0,"..")
+if ".." not in sys.path: sys.path.insert(0,"..")
import ply.lex as lex
@@ -19,7 +19,7 @@ t_NUMBER = r'\d+'
t_error = "foo"
-sys.tracebacklimit = 0
+
lex.lex()