We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cc01a1 commit 8a1994dCopy full SHA for 8a1994d
CHANGES
@@ -16,6 +16,8 @@ Features added
16
Bugs fixed
17
----------
18
19
+* #6936: sphinx-autogen: raises AttributeError
20
+
21
Testing
22
--------
23
sphinx/ext/autosummary/generate.py
@@ -59,6 +59,11 @@ def __init__(self) -> None:
59
self.registry = SphinxComponentRegistry()
60
self.messagelog = [] # type: List[str]
61
self.verbosity = 0
62
+ self._warncount = 0
63
+ self.warningiserror = False
64
65
+ def emit_firstresult(self, *args) -> None:
66
+ pass
67
68
69
def setup_documenters(app: Any) -> None:
0 commit comments