summaryrefslogtreecommitdiffstats
path: root/Doc/ref
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2005-05-26 07:58:22 (GMT)
committerMichael W. Hudson <mwh@python.net>2005-05-26 07:58:22 (GMT)
commit2f475a7bc848dced5d57414c45d929d1859d5505 (patch)
treea8438e2780a16eabe9aa6359708f750ede0e8fc0 /Doc/ref
parentb141cd03a1940b8a5250200b91b3b7d3ee7ac089 (diff)
downloadcpython-2f475a7bc848dced5d57414c45d929d1859d5505.zip
cpython-2f475a7bc848dced5d57414c45d929d1859d5505.tar.gz
cpython-2f475a7bc848dced5d57414c45d929d1859d5505.tar.bz2
Fix:
[ 1207501 ] Issue in grammar We didn't define dotted_name in the pseudo-grammar in the reference docs. Backport candidate.
Diffstat (limited to 'Doc/ref')
-rw-r--r--Doc/ref/ref7.tex2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex
index a285c4c..535ed95 100644
--- a/Doc/ref/ref7.tex
+++ b/Doc/ref/ref7.tex
@@ -323,6 +323,8 @@ section~\ref{types}):
{\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}]}