summaryrefslogtreecommitdiff
path: root/test/lex_token1.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_token1.py
parent912137883ba0ec6e0f0390c9664a7918ee529c14 (diff)
downloadply-3d91085e98cd5d2ddd3822793ab33bbad8287f5c.tar.gz
Revamped testing framework
Diffstat (limited to 'test/lex_token1.py')
-rw-r--r--test/lex_token1.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/lex_token1.py b/test/lex_token1.py
index 380c31c..6fca300 100644
--- a/test/lex_token1.py
+++ b/test/lex_token1.py
@@ -1,9 +1,9 @@
-# lex_token.py
+# lex_token1.py
#
# Tests for absence of tokens variable
import sys
-sys.path.insert(0,"..")
+if ".." not in sys.path: sys.path.insert(0,"..")
import ply.lex as lex
@@ -14,8 +14,6 @@ t_NUMBER = r'\d+'
def t_error(t):
pass
-sys.tracebacklimit = 0
-
lex.lex()