summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2015-05-08 10:10:55 -0500
committerDavid Beazley <dave@dabeaz.com>2015-05-08 10:10:55 -0500
commitdbf122652d38ba03ff9f9fe4aa9bee3693e6775f (patch)
treecbf3a1436804f6a5171b1d2bd1cce0c7b7867c0c
parent192d922697726dc59c7af1480a04e9fcd022cffc (diff)
downloadply-dbf122652d38ba03ff9f9fe4aa9bee3693e6775f.tar.gz
Minor fix to account for bad None arguments for tabmodule/lextab
-rw-r--r--ply/lex.py4
-rw-r--r--ply/yacc.py5
2 files changed, 8 insertions, 1 deletions
diff --git a/ply/lex.py b/ply/lex.py
index ed1e2ed..772325c 100644
--- a/ply/lex.py
+++ b/ply/lex.py
@@ -859,6 +859,10 @@ class LexerReflect(object):
# -----------------------------------------------------------------------------
def lex(module=None, object=None, debug=False, optimize=False, lextab='lextab',
reflags=0, nowarn=False, outputdir=None, debuglog=None, errorlog=None):
+
+ if lextab is None:
+ lextab = 'lextab'
+
global lexer
ldict = None
diff --git a/ply/yacc.py b/ply/yacc.py
index e0b4faf..eb02cc2 100644
--- a/ply/yacc.py
+++ b/ply/yacc.py
@@ -2709,7 +2709,7 @@ _tabversion = %r
_lr_method = %r
_lr_signature = %r
- ''' % (filename, __tabversion__, self.lr_method, signature))
+ ''' % (os.path.basename(filename), __tabversion__, self.lr_method, signature))
# Change smaller to 0 to go back to original tables
smaller = 1
@@ -3183,6 +3183,9 @@ def yacc(method='LALR', debug=yaccdebug, module=None, tabmodule=tab_module, star
check_recursion=True, optimize=False, write_tables=True, debugfile=debug_file,
outputdir=None, debuglog=None, errorlog=None, picklefile=None):
+ if tabmodule is None:
+ tabmodule = tab_module
+
# Reference to the parsing method of the last built parser
global parse