diff --git a/flanker/addresslib/_parser/parser.py b/flanker/addresslib/_parser/parser.py index b503959e..0d24297d 100644 --- a/flanker/addresslib/_parser/parser.py +++ b/flanker/addresslib/_parser/parser.py @@ -159,31 +159,41 @@ def p_error(p): mailbox_parser = yacc.yacc(start='mailbox', errorlog=log, tabmodule='mailbox_parsetab', - debug=False) + debug=False, + write_tables=False, + check_recursion=False) log.debug('building addr_spec parser') addr_spec_parser = yacc.yacc(start='addr_spec', errorlog=log, tabmodule='addr_spec_parsetab', - debug=False) + debug=False, + write_tables=False, + check_recursion=False) log.debug('building url parser') url_parser = yacc.yacc(start='url', errorlog=log, tabmodule='url_parsetab', - debug=False) + debug=False, + write_tables=False, + check_recursion=False) log.debug('building mailbox_or_url parser') mailbox_or_url_parser = yacc.yacc(start='mailbox_or_url', errorlog=log, tabmodule='mailbox_or_url_parsetab', - debug=False) + debug=False, + write_tables=False, + check_recursion=False) log.debug('building mailbox_or_url_list parser') mailbox_or_url_list_parser = yacc.yacc(start='mailbox_or_url_list', errorlog=log, tabmodule='mailbox_or_url_list_parsetab', - debug=False) + debug=False, + write_tables=False, + check_recursion=False) # Interactive prompt for easy debugging