File tree 2 files changed +3
-1
lines changed 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ Bugs fixed
90
90
* #9364: autodoc: single element tuple on the default argument value is wrongly
91
91
rendered
92
92
* #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
93
95
* #9317: html: Pushing left key causes visiting the next page at the first page
94
96
* #9381: html: URL for html_favicon and html_log does not work
95
97
* #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:
127
127
return _restify_py37 (cls )
128
128
else :
129
129
return _restify_py36 (cls )
130
- except AttributeError :
130
+ except ( AttributeError , TypeError ) :
131
131
return repr (cls )
132
132
133
133
You can’t perform that action at this time.
0 commit comments