649: #line 886 "input_frame.ipk" 650: # regexp's for the main functions 651: 652: def make_parse_tab(self, pywarn = None): 653: res = [] 654: if pywarn: 655: res = res + [ 656: ['^'+pywarn+'('+pywarn+')(.*)$',self.do_quote_at], 657: ['^'+pywarn+'(.*[-+*/%:,\\\\([{]) *(#.*)?$', self.do_exec_suite], 658: ['^'+pywarn+'(.*)$',self.do_exec_line] 659: ] 660: 661: 662: res = res + [ 663: ['^(.*)$',self.do_web] 664: ] 665: return res 666: