Re: [Python-3000] [EMAIL PROTECTED]: Poss. clarification for What's New in Python 3]

2007-09-04 Thread Guido van Rossum
Thanks, Mark! Fixed by changing "B\n" into "B". :-) On 9/3/07, A.M. Kuchling <[EMAIL PROTECTED]> wrote: > Forwarded: a comment on the 3.0 What's New. > > --amk > > > -- Forwarded message -- > From: Mark Summerfield <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Date: Sat, 1 Sep 2007

[Python-3000] [EMAIL PROTECTED]: Poss. clarification for What's New in Python 3]

2007-09-03 Thread A.M. Kuchling
Forwarded: a comment on the 3.0 What's New. --amk --- Begin Message --- Hi, In the What's New in Python 3 document you say For example, in Python 2.x, print "A\n", "B\n" would write "A\nB\n"; but in Python 3.0, print("A\n", "B\n") writes "A\n B\n". I would be tempted to change this to: