This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tobias.kohn
Recipients tobias.kohn
Date 2021-01-07.21:09:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610053767.4.0.390149770714.issue42860@roundup.psfhosted.org>
In-reply-to
Content
There seems to be a small type error in the Python grammar in the rule `invalid_parameters`:
```
invalid_parameters:
    | param_no_default* (slash_with_default | param_with_default+) param_no_default
```
While the `slash_with_default` returns a single element, the `param_with_default` returns a list/sequence.
History
Date User Action Args
2021-01-07 21:09:27tobias.kohnsetrecipients: + tobias.kohn
2021-01-07 21:09:27tobias.kohnsetmessageid: <1610053767.4.0.390149770714.issue42860@roundup.psfhosted.org>
2021-01-07 21:09:27tobias.kohnlinkissue42860 messages
2021-01-07 21:09:27tobias.kohncreate