Add tests for meta- bit set

This commit is contained in:
Andrew M. Kuchling 2003-08-29 18:49:05 +00:00
parent 72cdb70296
commit e8792c1f65
1 changed files with 4 additions and 1 deletions

View File

@ -198,7 +198,10 @@ def unit_tests():
from curses import ascii
for ch, expected in [('a', 'a'), ('A', 'A'),
(';', ';'), (' ', ' '),
('\x7f', '^?'), ('\n', '^J'), ('\0', '^@')]:
('\x7f', '^?'), ('\n', '^J'), ('\0', '^@'),
# Meta-bit characters
('\x8a', '!^J'), ('\xc1', '!A'),
]:
if ascii.unctrl(ch) != expected:
print 'curses.unctrl fails on character', repr(ch)