summaryrefslogtreecommitdiff
path: root/doc/development/tutorials/examples/autodoc_intenum.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix COM812Adam Turner2023-02-181-1/+1
|
* Use PEP 604 typesAdam Turner2023-01-011-2/+2
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* doc: Improve autodoc extension exampleJouke Witteveen2021-12-061-5/+4
| | | Enumerations can have aliases, which should be documented as well.
* doc: Fix autodoc extension exampleJouke Witteveen2021-12-021-2/+5
| | | | | | `directivetype` is set to mimic `ClassDocumenter`. Reflect that. `isinstance` would work on the enum members, but that is not what we want here. `issubclass` raises a TypeError when called on objects that are not classes.
* doc: Create autodoc extension tutorialigo958622021-03-091-0/+52