| author | rbrich |
| Fri, 14 Dec 2012 10:16:33 +0100 | |
| changeset 31 | 629d5edb1602 |
| parent 20 | 472a753664f9 |
| child 110 | cf3d49cdd6e2 |
| permissions | -rwxr-xr-x |
|
20
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
1 |
#!/usr/bin/python |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
2 |
# coding=UTF-8 |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
3 |
|
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
4 |
import curses |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
5 |
import locale |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
6 |
|
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
7 |
locale.setlocale(locale.LC_ALL, "") |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
8 |
|
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
9 |
def doStuff(stdscr): |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
10 |
message = "Press 'q' to quit.\n" |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
11 |
stdscr.addstr(0, 0, message, 0) |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
12 |
while True: |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
13 |
c = stdscr.getkey() # pauses until a key's hit |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
14 |
if c == 'q': |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
15 |
break |
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
16 |
stdscr.addstr('%s %r\n' % (c, c))
|
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
17 |
|
|
472a753664f9
Update utf8 character input to Python3. Reorganize tests.
Radek Brich <radek.brich@devl.cz>
parents:
diff
changeset
|
18 |
curses.wrapper(doStuff) |