Merge pull request #4952 from tk0miya/refactor_autodoc

autodoc: Remove unused dummy class; testcls
This commit is contained in:
Takayuki SHIMIZUKAWA 2018-05-12 15:17:31 +09:00 committed by GitHub
commit 570d798a1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1538,15 +1538,3 @@ def setup(app):
app.add_event('autodoc-skip-member')
return {'version': sphinx.__display_version__, 'parallel_read_safe': True}
class testcls:
"""test doc string"""
def __getattr__(self, x):
# type: (Any) -> Any
return x
def __setattr__(self, x, y):
# type: (Any, Any) -> None
"""Attr setter."""