summaryrefslogtreecommitdiff
path: root/ply/yacc.py
diff options
context:
space:
mode:
Diffstat (limited to 'ply/yacc.py')
-rw-r--r--ply/yacc.py5
1 files changed, 4 insertions, 1 deletions
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