diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-17 15:04:16 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-18 13:01:10 +0900 |
commit | 6d55e98da1b36b559ebc8653bf6105e61ff3ee4d (patch) | |
tree | dc0f8c565ee51d95383d567a112164969d28cf37 /tests/roots/test-ext-autodoc/target/enum.py | |
parent | 914d93a9e161077382539eb3ee9045343f1b56b1 (diff) | |
download | sphinx-git-6d55e98da1b36b559ebc8653bf6105e61ff3ee4d.tar.gz |
test: Move EnumCls to target.enum package
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/enum.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/enum.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/enum.py b/tests/roots/test-ext-autodoc/target/enum.py new file mode 100644 index 000000000..ce4d13f65 --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/enum.py @@ -0,0 +1,15 @@ +from __future__ import absolute_import +import enum + + +class EnumCls(enum.Enum): + """ + this is enum class + """ + + #: doc for val1 + val1 = 12 + val2 = 23 #: doc for val2 + val3 = 34 + """doc for val3""" + val4 = 34 |