diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-04-18 19:53:18 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-04-18 20:28:31 +0900 |
commit | ffb1ca3aaafe86b6bc44fe28e4000477e97ba3e8 (patch) | |
tree | 4bc721672a2a95ec179bcc6a647bce8276ac1f0c | |
parent | 21ca43719a08ea4aada4f99e3422f408fcb96057 (diff) | |
download | sphinx-git-ffb1ca3aaafe86b6bc44fe28e4000477e97ba3e8.tar.gz |
test: Add a docstring to avoid an error on py39a5+
-rw-r--r-- | tests/roots/test-ext-autodoc/target/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/__init__.py b/tests/roots/test-ext-autodoc/target/__init__.py index e28eeef8a..b6684ee85 100644 --- a/tests/roots/test-ext-autodoc/target/__init__.py +++ b/tests/roots/test-ext-autodoc/target/__init__.py @@ -145,6 +145,8 @@ First line of docstring class StrRepr(str): + """docstring""" + def __repr__(self): return self |