Skip to content

not recognize "*, " in python #10838

@zhangzq

Description

@zhangzq

Describe the bug
The python code:

def fun1(one, *two):
    pass

def fun2(one, *, two):
    pass

will output the same functions:

fun1 (one, *two)
fun2 (one, *two)

But actuall the two in these two functions are not the same. ref https://peps.python.org/pep-3102/.

To Reproduce
The above codes and default doxyfile.

Expected behavior
The fun2 should be :

fun2(one, *, two)

Version
1.11.0 (74f8b41aead51679bf364056b4fd091cf828a7cf)

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions