Thanks,
I tryed your example:
import msvcrt
while 1:
print '.'
if msvcrt.kbhit() and msvcrt.getch() == chr(27):
breakbut it doesn't work. It is running (Win2000), there is no messages about errors but there is no effect when pressing ESC key. What I am doing wrong? mo -- http://mail.python.org/mailman/listinfo/python-list
