[Python-checkins] python/dist/src/Doc/ref ref7.tex,1.44,1.45

mwh@users.sourceforge.net mwh at users.sourceforge.net
Thu May 26 09:58:25 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16924

Modified Files:
	ref7.tex 
Log Message:
Fix:

[ 1207501 ] Issue in grammar

We didn't define dotted_name in the pseudo-grammar in the reference
docs.  Backport candidate.


Index: ref7.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref7.tex,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- ref7.tex	9 Apr 2005 03:03:00 -0000	1.44
+++ ref7.tex	26 May 2005 07:58:22 -0000	1.45
@@ -323,6 +323,8 @@
              {\token{decorator}+}
   \production{decorator}
              {"@" \token{dotted_name} ["(" [\token{argument_list} [","]] ")"] NEWLINE}
+  \production{dotted_name}
+             {\token{identifier} ("." \token{identifier})*}
   \production{parameter_list}
                  {(\token{defparameter} ",")*}
   \productioncont{(~~"*" \token{identifier} [, "**" \token{identifier}]}



More information about the Python-checkins mailing list