Re: History of python syntax development?

2009-04-14 Thread Chris Rebert
On Tue, Apr 14, 2009 at 10:01 AM, Ritwik wrote: > Hi all, > I'm doing some work in programming languages and I'm looking for a > short history of python development, from the point of view of the > initial development of the syntax. I know I can go through the mailing > lists and news groups (and

Re: History of python syntax development?

2009-04-14 Thread Daniel Fetchinson
> I'm doing some work in programming languages and I'm looking for a > short history of python development, from the point of view of the > initial development of the syntax. I know I can go through the mailing > lists and news groups (and I am doing that at the moment), and the > python history bl

Re: history

2006-01-26 Thread Claudio Grondi
yqyq22 wrote: > Dear all, > another little question, I use idle 1.1.2, is there a way to use a > history for the command line? > thanks in advance > Another possibility beside going to any of the previous lines and hitting [Return]: [Alt]+p Claudio -- http://mail.python.org/mailman/listinfo/py

Re: history

2006-01-26 Thread [EMAIL PROTECTED]
yqyq22 wrote: > Dear all, > another little question, I use idle 1.1.2, is there a way to use a > history for the command line? Cursor up to a previously entered line and hit return. The line will be repeated, allowing editing. If the "line" was an entire block, the entire block will be repeated.