Lines Matching refs:ch
101 def fill (self, ch=SPACE):
103 self.fill_region (1,1,self.rows,self.cols, ch)
105 def fill_region (self, rs,cs, re,ce, ch=SPACE):
117 self.put_abs (r,c,ch)
153 def put_abs (self, r, c, ch):
159 ch = str(ch)[0]
160 self.w[r-1][c-1] = ch
162 def put (self, ch):
167 self.put_abs (self.cur_r, self.cur_c, ch)
169 def insert_abs (self, r, c, ch):
180 self.put_abs (r,c,ch)
182 def insert (self, ch):
184 self.insert_abs (self.cur_r, self.cur_c, ch)
213 ch = self.get_abs (r,c)
214 line = line + ch