123        Label(frame, text=script).grid(row=0, column=0, sticky=W)
 
  124        bottom=Frame(frame).grid(row=1, column=0)
 
  125        f=open(os.path.join(directory, script),
'r')
 
  130            line=line.rstrip(
'\r\n')
 
  134                tmp.insert(END, 
'ciao')
 
  135                self.
lines.append(tmp)
 
  136                tmp.grid(row=r,column=0)
 
  140        tmp=Button(bottom, text=
"Save", command=self.
save())
 
  141        tmp.grid(row=r, column=0, sticky=N)
 
  143        tmp=Button(bottom, text=
"Add", command=self.
addLine())
 
  144        tmp.grid(row=r, column=1, sticky=N)
 
  146        tmp=Button(bottom, text=
"Remove", command=self.
removeLine())
 
  147        tmp.grid(row=r, column=2, sticky=N)
 
  151        width=frame.winfo_width()
 
  152        height=frame.winfo_height()
 
  153        rootx=master.winfo_rootx()
 
  154        rooty=master.winfo_rooty()