| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
.. note::
$ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \;
$ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
|
| | |
|
| |
|
|
|
|
|
| |
The utility function movefile() was added in
677d096393bca948eea8fad252bd859ed8142309 to handle existing files on
Windows. Since Python 3.3, the stdlib function os.replace() fills this
role.
|
| |\
| |
| | |
refactor: Deprecate `no_docstring` argument for Documenter.add_content()
|
| | |
| |
| |
| |
| |
| | |
This deprecates `no_docstring` argument for Documenter.add_content().
After this change, please use Documenter.get_doc() to control (suppress)
the content of the python object.
|
| |/ |
|
| | |
|
| |\
| |
| |
| |
| | |
QuentinSoubeyran/8285_napoleon_google_style_use_annotations
Fix #8285: napoleon can use PEP526 annotations
|
| | | |
|
| | | |
|
| |\ \
| | |
| | | |
refactor: Deprecate InstanceAttributeDocumenter
|
| | |/
| |
| |
| |
| | |
InstanceAttributeDocumenter is merged into AttributeDocumenter in #7946
and #8444. So it is no longer needed now.
|
| |/
|
|
|
| |
Follow the Retry-After header if present, otherwise use an exponential
back-off.
|
| | |
|
| |\ |
|
| | |\
| | |
| | | |
Deprecate Documenter.get_object_members()
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
At present, the implementation of Documenter.get_object_members() is
only for class objects. In fact, no subclasses use it (all of them are
overriding the method).
This deprecates Documenter.get_object_members() and copies it to
ClassDocumenter.get_object_members().
|
| | | | |
|
| |/ /
| |
| |
| |
| | |
The details are only shown when automodule directive is used. This
allows to document them via other auto* directives.
|
| |/
|
|
|
| |
The word "analyze" is much appropriate for "ModuleAnalyzer" instead
of "parse".
|
| | |
|
| |
|
|
|
| |
According to the existing options of autodoc directives, `:novalue:`
option is now renamed to `:no-value:` option.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
| |
This method always returns False, it is dead code. The exception
checking stopped working because Requests library wraps SSL errors in a
`requests.exceptions.SSLError` and no longer throws an
`urllib3.exceptions.SSLError`. The first argument to that exception is
an `urllib3.exceptions.MaxRetryError`.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Keep imports alphabetically sorted and their order homogeneous across
Python source files.
The isort project has more feature and is more active than the
flake8-import-order plugin.
Most issues caught were simply import ordering from the same module.
Where imports were purposefully placed out of order, tag with
isort:skip.
|
| |\ |
|
| | | |
|
| |/
|
|
|
|
|
|
|
| |
In #7651, autodoc stops to undecorate the functions on getting the
signature from the callables. But some kinds of decorators conceals
the correct signature because they pass through their arguments via
`(*args, **kwargs)`.
This restarts to undecorate the functions again as before #7651.
|
| |\
| |
| | |
doc: Update sphinx-contrib repos' URL (refs: #8349)
|
| | | |
|
| |/
|
|
|
|
|
|
|
| |
To be clear the ambiguous warning for missing-reference :ref:,
this separates the warning to missing-label and missing-caption.
To emit a warning dynamically, this also adds a new event:
`warn-missing-reference` to customize warning messages via event
handlers.
|
| | |
|
| |\
| |
| | |
DOC: Add favicon
|
| | | |
|
| |/ |
|
| |\
| |
| | |
Allow to suppress "duplicated toc entry" warnings from epub builder
|
| | | |
|
| | |
| |
| |
| | |
builder
|
| |/
|
|
| |
Intersphinx is in use since 6a396c7eb85e4f2e2291652c454352bad1a397f4.
|
| |\
| |
| | |
Close #7996: manpage: Add man_make_section_directory
|
| | |
| |
| |
| |
| |
| | |
Add a new config variable; man_make_section_directory to make a
section directory on build man page. During 3.x, it defaults to
False and will be changed to True on 4.0 release.
|
| |/
|
|
|
|
| |
In #7487, SingledispatchFunctionDocumenter is merged into
FunctionDocumenter. SingledispatchMethodDocumenter is also. As a result,
They are no longer needed. So this deprecates them.
|
| |
|
|
|
|
|
|
| |
Trailing whitespace do not have impact on the result, they are just
unused bytes. Most text editors are configured to strip trailing
whitespaces. Remove them all in one go.
Update a handful of files to use the UNIX line ending.
|
| |
|
|
|
| |
autodoc_type_aliases allows to keep user defined type alises not
evaluated in the generated document.
|
| | |
|
| |
|
|
|
|
|
| |
This postpones the evaluation of LaTeX packages via
``app.add_latex_package()`` to just before writing .tex file. That
allows extensions to add LaTeX packages during reading and resolving
phase.
|
| |
|
|
| |
Fixes sphinx-doc/sphinx#8141
|
| | |
|
| | |
|