The in-memory text I/O for the application warning messages.
(self)
| 214 | |
| 215 | @property |
| 216 | def warning(self) -> StringIO: |
| 217 | """The in-memory text I/O for the application warning messages.""" |
| 218 | # sphinx.application.Sphinx uses StringIO for a quiet stream |
| 219 | assert isinstance(self._warning, StringIO) |
| 220 | return self._warning |
| 221 | |
| 222 | def cleanup(self, doctrees: bool = False) -> None: |
| 223 | sys.path[:] = self._saved_path |
no outgoing calls