Re: repeat until keypressed

2017-05-29 Thread Terry Reedy
On 5/29/2017 12:14 PM, Dennis Lee Bieber wrote: On Mon, 29 May 2017 06:14:46 -0700 (PDT), Poul Riis declaimed the following: In good old pascal there was this one-liner command: repeat until keypressed Apparently there is no built-in analogue for that in python. I have explored several

Re: repeat until keypressed

2017-05-29 Thread Peter Otten
Poul Riis wrote: > In good old pascal there was this one-liner command: > repeat until keypressed > > Apparently there is no built-in analogue for that in python. I have > explored several different possibilities (pyglet, keyboard, curses, ginput > (from matplotlib) and other

Re: repeat until keypressed

2017-05-29 Thread jmp
On 05/29/2017 03:14 PM, Poul Riis wrote: In good old pascal there was this one-liner command: repeat until keypressed Apparently there is no built-in analogue for that in python. I have explored several different possibilities (pyglet, keyboard, curses, ginput (from matplotlib) and others

repeat until keypressed

2017-05-29 Thread Poul Riis
In good old pascal there was this one-liner command: repeat until keypressed Apparently there is no built-in analogue for that in python. I have explored several different possibilities (pyglet, keyboard, curses, ginput (from matplotlib) and others) but not managed to find anything that works