File tree Expand file tree Collapse file tree
flanker/addresslib/_parser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -159,31 +159,41 @@ def p_error(p):
159159mailbox_parser = yacc .yacc (start = 'mailbox' ,
160160 errorlog = log ,
161161 tabmodule = 'mailbox_parsetab' ,
162- debug = False )
162+ debug = False ,
163+ write_tables = False ,
164+ check_recursion = False )
163165
164166log .debug ('building addr_spec parser' )
165167addr_spec_parser = yacc .yacc (start = 'addr_spec' ,
166168 errorlog = log ,
167169 tabmodule = 'addr_spec_parsetab' ,
168- debug = False )
170+ debug = False ,
171+ write_tables = False ,
172+ check_recursion = False )
169173
170174log .debug ('building url parser' )
171175url_parser = yacc .yacc (start = 'url' ,
172176 errorlog = log ,
173177 tabmodule = 'url_parsetab' ,
174- debug = False )
178+ debug = False ,
179+ write_tables = False ,
180+ check_recursion = False )
175181
176182log .debug ('building mailbox_or_url parser' )
177183mailbox_or_url_parser = yacc .yacc (start = 'mailbox_or_url' ,
178184 errorlog = log ,
179185 tabmodule = 'mailbox_or_url_parsetab' ,
180- debug = False )
186+ debug = False ,
187+ write_tables = False ,
188+ check_recursion = False )
181189
182190log .debug ('building mailbox_or_url_list parser' )
183191mailbox_or_url_list_parser = yacc .yacc (start = 'mailbox_or_url_list' ,
184192 errorlog = log ,
185193 tabmodule = 'mailbox_or_url_list_parsetab' ,
186- debug = False )
194+ debug = False ,
195+ write_tables = False ,
196+ check_recursion = False )
187197
188198
189199# Interactive prompt for easy debugging
You can’t perform that action at this time.
0 commit comments