def wait_for_keystroke():
  char=0
  while not (char==chr(27) or char==chr(110)):
    char=msvcrt.getch()
    if char==0:
      return

That freezes the process.
That means char=msvcrt.getch() is getting something?
Could it have something to do with the formatting of the character?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to