Stop generating a parser.out file in the source.

This commit is contained in:
Ms2ger 2016-03-01 09:42:41 +01:00
parent 00628704ca
commit 549f2669f0
4 changed files with 15 additions and 2 deletions

View file

@ -6438,7 +6438,8 @@ class Parser(Tokenizer):
self.parser = yacc.yacc(module=self,
outputdir=outputdir,
tabmodule='webidlyacc',
errorlog=logger
errorlog=logger,
debug=False
# Pickling the grammar is a speedup in
# some cases (older Python?) but a
# significant slowdown in others.