[pyrepl-checkins] pyrepl/pyrepl pygame_console.py,1.3,1.4

mwh@codespeak.net mwh@codespeak.net
Tue, 20 May 2003 15:17:59 +0200 (MEST)


Update of /cvs/pyrepl/pyrepl/pyrepl
In directory thoth.codespeak.net:/tmp/cvs-serv26010

Modified Files:
	pygame_console.py 
Log Message:
add honest comment


Index: pygame_console.py
===================================================================
RCS file: /cvs/pyrepl/pyrepl/pyrepl/pygame_console.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** pygame_console.py	17 Jan 2003 14:02:48 -0000	1.3
--- pygame_console.py	20 May 2003 13:17:57 -0000	1.4
***************
*** 18,21 ****
--- 18,29 ----
  # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  
+ # the pygame console is currently thoroughly broken.
+ 
+ # there's a fundamental difference from the UnixConsole: here we're
+ # the terminal emulator too, in effect.  This means, e.g., for pythoni
+ # we really need a separate process (or thread) to monitor for ^C
+ # during command execution and zap the executor process.  Making this
+ # work on non-Unix is expected to be even more entertaining.
+ 
  from pygame.locals import *
  from pyrepl.console import Console, Event