Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

not recognize "*, " in python #10838

Closed
zhangzq opened this issue Apr 30, 2024 · 3 comments
Closed

not recognize "*, " in python #10838

zhangzq opened this issue Apr 30, 2024 · 3 comments

Comments

@zhangzq
Copy link

zhangzq commented Apr 30, 2024

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)

albert-github added a commit to albert-github/doxygen that referenced this issue Apr 30, 2024
Possibility in a function definition to have `*` as separate argument.
@albert-github
Copy link
Collaborator

I've just pushed a proposed patch, pull request #10841

doxygen added a commit that referenced this issue Apr 30, 2024
@albert-github albert-github added the fixed but not released Bug is fixed in github, but still needs to make its way to an official release label May 1, 2024
@albert-github
Copy link
Collaborator

Code has been integrated in master on GitHub (please don't close the issue as this will be done at the moment of an official release).

@doxygen
Copy link
Owner

doxygen commented May 20, 2024

This issue was previously marked 'fixed but not released',
which means it should be fixed in doxygen version 1.11.0.
Please verify if this is indeed the case. Reopen the
issue if you think it is not fixed and please include any additional information
that you think can be relevant (preferably in the form of a self-contained example).

@doxygen doxygen removed the fixed but not released Bug is fixed in github, but still needs to make its way to an official release label May 20, 2024
@doxygen doxygen closed this as completed May 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants