summaryrefslogtreecommitdiff
path: root/example/BASIC
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2009-02-03 18:22:47 +0000
committerDavid Beazley <dave@dabeaz.com>2009-02-03 18:22:47 +0000
commit2509247839cfff7bb5cb762591ac718619e4c619 (patch)
tree47eb6062ebb7910671590eceae917d1b08e79711 /example/BASIC
parent0516f5fcd0b0931a018128c5f4a070b14c76a040 (diff)
downloadply-2509247839cfff7bb5cb762591ac718619e4c619.tar.gz
Fixes to debugging output and docs
Diffstat (limited to 'example/BASIC')
-rw-r--r--example/BASIC/basiclex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/BASIC/basiclex.py b/example/BASIC/basiclex.py
index 4317e0f..3d27cde 100644
--- a/example/BASIC/basiclex.py
+++ b/example/BASIC/basiclex.py
@@ -54,7 +54,7 @@ def t_error(t):
print("Illegal character %s" % t.value[0])
t.lexer.skip(1)
-lex.lex()
+lex.lex(debug=0)