From 29c15c6870b67732d1a14b6b2702d5fdca82521e Mon Sep 17 00:00:00 2001 From: Curtis Dunham Date: Wed, 19 Mar 2014 19:18:43 -0500 Subject: [PATCH] ext: disable PLY debugging Very rarely does anyone ever mess with PLY code, and when such a need arises, the developer can reenable this flag in their working tree. This will eliminate the "generating LALR tables" message during compilation and temporary parser.out file as well. --- ext/ply/ply/yacc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/ply/ply/yacc.py b/ext/ply/ply/yacc.py index 3bf6e8e4d..d4bb8822d 100644 --- a/ext/ply/ply/yacc.py +++ b/ext/ply/ply/yacc.py @@ -68,7 +68,7 @@ __tabversion__ = "3.2" # Table version # Change these to modify the default behavior of yacc (if you wish) #----------------------------------------------------------------------------- -yaccdebug = 1 # Debugging mode. If set, yacc generates a +yaccdebug = 0 # Debugging mode. If set, yacc generates a # a 'parser.out' file in the current directory debug_file = 'parser.out' # Default name of the debugging file