本文整理汇总了Python中curses.ascii.unctrl方法的典型用法代码示例。如果您正苦于以下问题:Python ascii.unctrl方法的具体用法?Python ascii.unctrl怎么用?Python ascii.unctrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类curses.ascii
的用法示例。
在下文中一共展示了ascii.unctrl方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: unit_tests
# 需要导入模块: from curses import ascii [as 别名]
# 或者: from curses.ascii import unctrl [as 别名]
def unit_tests():
from curses import ascii
for ch, expected in [('a', 'a'), ('A', 'A'),
(';', ';'), (' ', ' '),
('\x7f', '^?'), ('\n', '^J'), ('\0', '^@'),
# Meta-bit characters
('\x8a', '!^J'), ('\xc1', '!A'),
]:
if ascii.unctrl(ch) != expected:
print 'curses.unctrl fails on character', repr(ch)
示例2: test_unctrl
# 需要导入模块: from curses import ascii [as 别名]
# 或者: from curses.ascii import unctrl [as 别名]
def test_unctrl(self):
from curses import ascii
for ch, expected in [('a', 'a'), ('A', 'A'),
(';', ';'), (' ', ' '),
('\x7f', '^?'), ('\n', '^J'), ('\0', '^@'),
# Meta-bit characters
('\x8a', '!^J'), ('\xc1', '!A'),
]:
self.assertEqual(ascii.unctrl(ch), expected,
'curses.unctrl fails on character %r' % ch)