summaryrefslogtreecommitdiff
path: root/sphinx/ext/autodoc/preserve_defaults.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix COM812Adam Turner2023-02-181-1/+1
|
* Use PEP 604 typesAdam Turner2023-01-011-3/+3
|
* Use PEP 595 typesAdam Turner2023-01-011-3/+3
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* Use ``ast.parse`` from the standard libraryAdam Turner2022-10-171-3/+2
|
* Merge branch '5.x'Adam Turner2022-10-161-1/+2
|\ | | | | | | | | | | | | | | # Conflicts: # .github/workflows/main.yml # CHANGES # sphinx/__init__.py # sphinx/domains/c.py
| * Ensure non-builtin extensions use the proper versionAdam Turner2022-09-301-1/+2
| |
* | Drop Python 3.7Adam Turner2022-09-271-7/+3
| |
* | Clean up after dropping Python 3.6Adam Turner2022-09-271-2/+2
|/
* Fix more strict static typing errors (#10681)danieleades2022-08-281-1/+1
|
* Fix #10421: autodoc_preserve_defaults doesn't work on class methodsTakeshi KOMIYA2022-05-081-1/+12
|
* Fix #10266: autodoc_preserve_defaults crashes on kwonlyargs w/o defaultsTakeshi KOMIYA2022-04-021-1/+5
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Conform to PEP 257 summary line conventionsAdam Turner2022-02-201-1/+3
|
* Fix module docstring indentationAdam Turner2022-02-201-3/+3
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* Fix #9844: autodoc: Failed to preserve defvalues for partial functionTakeshi KOMIYA2021-11-261-1/+1
|
* Fix #9781: autodoc_preserve_defaults does not support hexadecimalTakeshi KOMIYA2021-10-311-5/+33
|
* Fix #759: autodoc: Add sphinx.ext.autodoc.preserve_defaults extensionTakeshi KOMIYA2021-03-061-0/+88
Add a new extension `sphinx.ext.autodoc.preserve_defaults`. It preserves the default argument values of function signatures in source code and keep them not evaluated for readability. This is an experimental extension and it will be integrated into autodoc core in Sphinx-4.0.