Skip to content

Commit

Permalink
Merge branch '4.0.x' into 9188_warning_for_autosummary_generate
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed May 10, 2021
2 parents ab6ec71 + 7c16981 commit 88ef2b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Features added
Bugs fixed
----------

* #9189: autodoc: crashed when ValueError is raised on generating signature
from a property of the class
* #9188: autosummary: warning is emitted if list value is set to
autosummary_generate

Expand Down
2 changes: 1 addition & 1 deletion sphinx/ext/autodoc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2570,7 +2570,7 @@ def add_directive_header(self, sig: str) -> None:
self.fullname, exc)
return None
except ValueError:
raise
return None


class NewTypeAttributeDocumenter(AttributeDocumenter):
Expand Down

0 comments on commit 88ef2b3

Please sign in to comment.