6.10.10.2.9. Some Commands

6.10.10.2.9. Some Commands

Start python section to interscript/frames/inputf.py[14]
   328: #line 502 "input_frame.ipk"
   329:   def set_anchor(self,label):
   330:     if self.tangler:
   331:       self.tangler.weaver.set_anchor(label)
   332:     else:
   333:       self.weaver.set_anchor(label)
   334: 
   335:   def ref_anchor(self,label):
   336:     self.weaver.ref_anchor(label)
   337: 
   338:   def set_warning_character(self,python=None):
   339:     res = self.make_parse_tab(pywarn=python)
   340:     res = compile_parse_tab(res)
   341:     self.reg_list = res
   342:     self.python_warn = python
   343: 
   344:   def normal_line(self,data,file,count):
   345:     weaver = self.get_weaver()
   346:     if self.tangler:
   347:       self.tangler.writeline(data,file,count)
   348:     else:
   349:       weaver.writeline(data)
   350: 
End python section to interscript/frames/inputf.py[14]