-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
bug: Problem when rendering ENUM value #124
Labels
Comments
pawamoy
added a commit
to mkdocstrings/griffe
that referenced
this issue
Apr 18, 2024
…n enumeration class, instance or value Issue-mkdocstrings/python#124: mkdocstrings/python#124
pawamoy
added a commit
to mkdocstrings/griffe
that referenced
this issue
Apr 18, 2024
…n enumeration class, instance or value Issue-mkdocstrings/python#124: mkdocstrings/python#124
pawamoy
added a commit
that referenced
this issue
Apr 19, 2024
…ng proper cross-reference Issue-124: #124
Enum values should now always render the enum instance name too. |
clrpackages
pushed a commit
to clearlinux-pkgs/pypi-griffe
that referenced
this issue
Apr 22, 2024
…ion 0.43.0 commit 505d73896b4849eb25316544a7b0344c1710efcc Author: Timothée Mazzucotelli <dev@pawamoy.fr> Date: Thu Apr 18 15:15:30 2024 +0200 chore: Prepare release 0.43.0 commit fdb21d943f72fb10a4406930bf3e3bf7aceff6b0 Author: Timothée Mazzucotelli <dev@pawamoy.fr> Date: Mon Apr 15 18:56:11 2024 +0200 feat: Add properties telling whether an expression name resolves to an enumeration class, instance or value Issue-mkdocstrings/python#124: mkdocstrings/python#124
viktorlashchuk
added a commit
to viktorlashchuk/mkdocstrings-python
that referenced
this issue
Feb 24, 2025
…ng proper cross-reference Issue-124: mkdocstrings/python#124
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Description of the bug
The ENUM render isn't rendering the ENUM name in the value.
To Reproduce
Generated doc:

Expected behavior
For ENUM values the ENUM name/full qualified name helps to gather context, it should render at least the ENUM name in the value, like
MyEnum.MY_VALUE_1.value
, the constantMY_VALUE_1.value
or the full qualified namemy_module.MyEnum.MY_VALUE_1.value
.The text was updated successfully, but these errors were encountered: