From: Raymond Hettinger Date: Tue, 25 Jun 2002 15:21:02 +0000 (+0000) Subject: Completed previous edit X-Git-Tag: v2.2.2b1~297 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cbfac7efdd4277b1b1e811aa8192423209a01709;p=thirdparty%2FPython%2Fcpython.git Completed previous edit --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index f45604b4c135..4b0509fd3655 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -1843,8 +1843,6 @@ parenthesized. [12, 18] >>> [3*x for x in vec if x < 2] [] ->>> [{x: x**2} for x in vec] -[{2: 4}, {4: 16}, {6: 36}] >>> [[x,x**2] for x in vec] [[2, 4], [4, 16], [6, 36]] >>> [x, x**2 for x in vec] # error - parens required for tuples