[issue28978] a redundant right parentheses in the EBNF rules of parameter_list

Irit Katriel report at bugs.python.org
Mon Sep 6 13:02:24 EDT 2021


Irit Katriel <iritkatriel at gmail.com> added the comment:

This doc has changed, and it's now like this:

parameter_list            ::=  defparameter ("," defparameter)* "," "/" ["," [parameter_list_no_posonly]]
                                 | parameter_list_no_posonly
parameter_list_no_posonly ::=  defparameter ("," defparameter)* ["," [parameter_list_starargs]]
                               | parameter_list_starargs
parameter_list_starargs   ::=  "*" [parameter] ("," defparameter)* ["," ["**" parameter [","]]]
                               | "**" parameter [","]

----------
nosy: +iritkatriel
resolution:  -> out of date
stage: needs patch -> resolved
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue28978>
_______________________________________


More information about the Python-bugs-list mailing list