コード例 #1
0
ファイル: vterm.py プロジェクト: aiminickwong/ovirt_config
 def apply_mapping(self, char):
     if self._sgr_mapping or self._g[self.active] == 'ibmpc':
         dec_pos = DEC_SPECIAL_CHARS.find(char.decode('cp437'))
         if dec_pos >= 0:
             self.current = '0'
             return str(ALT_DEC_SPECIAL_CHARS[dec_pos])
         else:
             self.current = 'U'
             return char
     else:
         return char
コード例 #2
0
ファイル: vterm.py プロジェクト: Gordin/urwid
 def apply_mapping(self, char):
     if self._sgr_mapping or self._g[self.active] == "ibmpc":
         dec_pos = DEC_SPECIAL_CHARS.find(char.decode("cp437"))
         if dec_pos >= 0:
             self.current = "0"
             return str(ALT_DEC_SPECIAL_CHARS[dec_pos])
         else:
             self.current = "U"
             return char
     else:
         return char