tests/unicode.py
changeset 20 472a753664f9
parent 19 5e78d52ebb24
child 21 8553a6bd2d82
--- a/tests/unicode.py	Fri Oct 07 12:02:33 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-# coding=UTF-8
-
-import curses
-import locale
-
-locale.setlocale(locale.LC_ALL, "")
-
-def doStuff(stdscr):
-  message = "Žlutý kůň.\nPress 'q' to quit.\n"
-  stdscr.addstr(0, 0, message, 0)
-  while True:
-    c = stdscr.getch() # pauses until a key's hit
-    if c == ord('q'):
-      break
-    stdscr.addch(c)
-
-curses.wrapper(doStuff)