File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818class VDI :
1919 """VirtualBox Virtual Disk Image (VDI) implementation.
2020
21- Use :method :`open` to get a stream for reading from the VDI file. The stream will handle reading
21+ Use :meth :`open` to get a stream for reading from the VDI file. The stream will handle reading
2222 from the parent disk if necessary (and provided).
2323
2424 If provided with a file-like object, the caller is responsible for closing it.
Original file line number Diff line number Diff line change 33
44# You can set these variables from the command line, and also
55# from the environment for the first two.
6- SPHINXOPTS ?= -jauto
6+ SPHINXOPTS ?= -jauto -w $( BUILDDIR ) /warnings.log --fail-on-warning
77SPHINXBUILD ?= sphinx-build
88SOURCEDIR = .
99BUILDDIR = build
Original file line number Diff line number Diff line change 2727 "show-inheritance" ,
2828 "show-module-summary" ,
2929 "special-members" ,
30- "imported-members" ,
3130]
3231autoapi_keep_files = True
3332autoapi_template_dir = "_templates/autoapi"
3635autodoc_member_order = "groupwise"
3736
3837autosectionlabel_prefix_document = True
38+
39+ suppress_warnings = [
40+ # https://github.com/readthedocs/sphinx-autoapi/issues/285
41+ "autoapi.python_import_resolution" ,
42+ ]
You can’t perform that action at this time.
0 commit comments