576: #line 812 "input_frame.ipk" 577: # regexp's for the main functions 578: 579: def make_parse_tab(self, pywarn = None): 580: res = [] 581: if pywarn: 582: res = res + [ 583: ['^'+pywarn+'('+pywarn+')(.*)$',self.do_quote_at], 584: ['^'+pywarn+'(.*[-+*/%:,\\\\([{]) *(#.*)?$', self.do_exec_suite], 585: ['^'+pywarn+'(.*)$',self.do_exec_line] 586: ] 587: 588: 589: res = res + [ 590: ['^(.*)$',self.do_web] 591: ] 592: return res 593: