-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Description
Describe the bug
The python code:
def fun1(one, *two):
pass
def fun2(one, *, two):
passwill 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)