Ejemplo n.º 1
0
 def insch(self, y, x, ch, attr=None):
     ch = _chtype(ch)
     if attr is None:
         attr = lib.A_NORMAL
     if y is not None:
         code = lib.mvwinsch(self._win, y, x, ch | attr)
     else:
         code = lib.winsch(self._win, ch | attr)
     return _check_ERR(code, "insch")
Ejemplo n.º 2
0
 def insch(self, y, x, ch, attr=None):
     ch = _chtype(ch)
     if attr is None:
         attr = lib.A_NORMAL
     if y is not None:
         code = lib.mvwinsch(self._win, y, x, ch | attr)
     else:
         code = lib.winsch(self._win, ch | attr)
     return _check_ERR(code, "insch")