[Python-checkins] python/dist/src/Doc/ref ref5.tex,1.53.4.11,1.53.4.12
fdrake@users.sourceforge.net
fdrake@users.sourceforge.net
2003年6月27日 10:13:20 -0700
Update of /cvsroot/python/python/dist/src/Doc/ref
In directory sc8-pr-cvs1:/tmp/cvs-serv19043
Modified Files:
Tag: release22-maint
ref5.tex
Log Message:
Add definitions of the test and testlist symbols in the grammar so
there are no gaps in the definitions.
Closes SF bug #726150.
Index: ref5.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref5.tex,v
retrieving revision 1.53.4.11
retrieving revision 1.53.4.12
diff -C2 -d -r1.53.4.11 -r1.53.4.12
*** ref5.tex 16 Dec 2002 23:19:19 -0000 1.53.4.11
--- ref5.tex 27 Jun 2003 17:13:17 -0000 1.53.4.12
***************
*** 170,173 ****
--- 170,178 ----
\begin{productionlist}
+ \production{test}
+ {\token{and_test} ( "or" \token{and_test} )*
+ | \token{lambda_form}}
+ \production{testlist}
+ {\token{test} ( "," \token{test} )* [ "," ]}
\production{list_display}
{"[" [\token{listmaker}] "]"}