[Python-checkins] python/dist/src/Doc/ref ref5.tex,1.75,1.76

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Fri, 27 Jun 2003 10:12:47 -0700


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory sc8-pr-cvs1:/tmp/cvs-serv18909

Modified Files:
	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.75
retrieving revision 1.76
diff -C2 -d -r1.75 -r1.76
*** ref5.tex	26 Jun 2003 19:32:10 -0000	1.75
--- ref5.tex	27 Jun 2003 17:12:43 -0000	1.76
***************
*** 154,157 ****
--- 154,162 ----
  
  \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}] "]"}