File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ Bugs fixed
9090* #9364: autodoc: single element tuple on the default argument value is wrongly
9191 rendered
9292* #9362: autodoc: AttributeError is raised on processing a subclass of Tuple[()]
93+ * #9404: autodoc: TypeError is raised on processing dict-like object (not a
94+ class) via autoclass directive
9395* #9317: html: Pushing left key causes visiting the next page at the first page
9496* #9381: html: URL for html_favicon and html_log does not work
9597* #9270: html theme : pyramid theme generates incorrect logo links
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ def restify(cls: Optional[Type]) -> str:
127127 return _restify_py37 (cls )
128128 else :
129129 return _restify_py36 (cls )
130- except AttributeError :
130+ except ( AttributeError , TypeError ) :
131131 return repr (cls )
132132
133133
You can’t perform that action at this time.
0 commit comments