Skip to content

* parameter's error messages say argument instead of parameter #133436

Closed as duplicate of#133379
@hyperkai

Description

@hyperkai

Bug report

Bug description:

Setting two * to a function gets the error message saying * argument as shown below:

def func(*, *, param1, param2):
    pass

SyntaxError: * argument may appear only once

Setting * after all the parameters gets the error message saying named arguments as shown below:

def func(param1, param2, *):
    pass

SyntaxError: named arguments must follow bare *

So, argument should be replaced with parameter as shown below:

SyntaxError: duplicate parameter 'param' in function definition

SyntaxError: named parameters must follow bare *

*You can also see this issue.

CPython versions tested on:

3.12

Operating systems tested on:

Linux

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    interpreter-core(Objects, Python, Grammar, and Parser dirs)pendingThe issue will be closed if no feedback is providedtopic-parsertype-bugAn unexpected behavior, bug, or error

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions