summaryrefslogtreecommitdiff
path: root/sphinx/ext/autosummary/generate.py
Commit message (Collapse)AuthorAgeFilesLines
...
| | * A happy new year!Takeshi KOMIYA2021-01-011-1/+1
| | | | | | | | | | | | | | | | | | | | | .. 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
* | | Merge branch '3.x'Takeshi KOMIYA2020-12-311-2/+1
|\ \ \ | |/ /
| * | refactor: autosummary: Do not import deprecated documenter; ↵Takeshi KOMIYA2020-12-291-2/+1
| | | | | | | | | | | | SingledispatchFunctionDocumenter
* | | Merge branch '3.x'Takeshi KOMIYA2020-12-291-0/+8
|\ \ \ | |/ /
| * | Fix #8306: autosummary: mocked modules are documented as empty pageTakeshi KOMIYA2020-12-271-0/+8
| |/ | | | | | | | | The :recursive: option for autosummary directive creates an empty page for mocked modules unexpectedly. This make them ignored.
* | Merge branch '3.x'Takeshi KOMIYA2020-12-141-8/+5
|\ \ | |/
| * Fix #8503: autoattribute could not create document for a GenericAliasTakeshi KOMIYA2020-11-291-3/+2
| |
| * refactor: Deprecate InstanceAttributeDocumenterTakeshi KOMIYA2020-11-261-7/+5
| | | | | | | | | | InstanceAttributeDocumenter is merged into AttributeDocumenter in #7946 and #8444. So it is no longer needed now.
| * Fix #8480: autoattribute could not create document for __slots__ attributesTakeshi KOMIYA2020-11-231-3/+3
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-11-221-4/+6
|\ \ | |/
| * apidoc: Load NewTypeAttributeDocumenter on bootingTakeshi KOMIYA2020-11-221-6/+7
| |
| * Fix #8460: autodoc: Support custom types defined by typing.NewTypeTakeshi KOMIYA2020-11-211-3/+4
| | | | | | | | | | | | | | | | | | | | A custom type defined by typing.NewType was rendered as a function because the generated type is a function having special attributes. This renders it as a variable. Note: The module name where the NewType object defined is lost on generating it. So it is hard to make cross-reference for these custom types.
* | Merge branch '3.x'Takeshi KOMIYA2020-11-211-4/+2
|\ \ | |/
| * Fix #8443: autodata directive does not support PEP-526 ivarsTakeshi KOMIYA2020-11-201-4/+2
| |
* | Do isortTakeshi KOMIYA2020-11-121-1/+0
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-11-121-13/+10
|\ \ | |/
| * Sort imports with isortFrançois Freitag2020-11-111-13/+10
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge branch '3.x'Takeshi KOMIYA2020-08-081-3/+8
|\ \ | |/
| * Close #8011: autosummary: Support instance attributesTakeshi KOMIYA2020-08-011-3/+8
| | | | | | | | | | This allows the autosummary directive to take instance attributes to build documents for them.
* | Merge branch '3.x'Takeshi KOMIYA2020-07-241-1/+7
|\ \ | |/
| * Rm unused importJoel Nothman2020-07-151-1/+1
| |
| * Fix toctree generationJoel Nothman2020-07-151-3/+0
| |
| * Fix attempt with new test rootJoel Nothman2020-07-081-0/+1
| |
| * Flake8Joel Nothman2020-07-081-1/+1
| |
| * Add autosummary_filename_map config to avoid clashesJoel Nothman2020-07-081-2/+10
| |
* | refactor: namedtuples with PEP 526Takeshi KOMIYA2020-07-161-4/+5
| | | | | | | | | | Apply PEP 526 based variable annotation style to namedtuples. It is available since python 3.6.
* | Merge branch '3.x'Takeshi KOMIYA2020-07-051-8/+13
|\ \ | |/
| * Merge branch '3.1.x' into 3.xTakeshi KOMIYA2020-07-041-4/+9
| |\
| | * Fix #7812: autosummary: generates broken stub files (again)Takeshi KOMIYA2020-06-281-4/+9
| | |
| * | Fix #7839: autosummary: cannot handle umlauts in function namesTakeshi KOMIYA2020-06-161-4/+4
| |/
* | Merge branch '3.x'Takeshi KOMIYA2020-06-041-5/+75
|\ \ | |/
| * Fix mypy violations (with mypy-0.780)Takeshi KOMIYA2020-06-031-2/+2
| |
| * Close #4422: autodoc: Support GenericAliasTakeshi KOMIYA2020-05-301-2/+2
| |
| * Fix #7685: autosummary: imported members are listed unexpectedlyTakeshi KOMIYA2020-05-211-1/+53
| |
| * got public/all attrs backwardsDaniel Fremont2020-05-171-1/+1
| |
| * revisions per comments from tk0miyaDaniel Fremont2020-05-171-15/+18
| |
| * Merge remote-tracking branch 'sphinx/3.x' into 3.xDaniel Fremont2020-05-171-43/+112
| |\
| * | autosummary includes module attributesDaniel Fremont2020-04-121-0/+15
| | |
* | | Merge branch '3.x'Takeshi KOMIYA2020-05-171-9/+10
|\ \ \ | | |/ | |/|
| * | Fix #7551: autosummary: a nested class is indexed as non-nested classTakeshi KOMIYA2020-05-071-9/+10
| | |
* | | Merge branch '3.x'Takeshi KOMIYA2020-05-041-4/+4
|\ \ \ | |/ /
| * | Add stacklevel parameter to warnings.warn() callTakeshi KOMIYA2020-05-031-6/+6
| | |
* | | Merge branch '3.x'Takeshi KOMIYA2020-05-021-3/+3
|\ \ \ | |/ /
| * | Fix #7588: autosummary: allow any template suffixTakeshi KOMIYA2020-05-021-3/+3
| | |
* | | Merge branch '3.x'Takeshi KOMIYA2020-04-301-10/+10
|\ \ \ | |/ /
| * | Fix #7570: autosummary: template option is brokenTakeshi KOMIYA2020-04-301-10/+10
| | |
* | | Remove deprecated features marked as RemovedInSphinx40WarningTakeshi KOMIYA2020-04-291-24/+9
| | |
* | | Merge branch '3.x'Takeshi KOMIYA2020-04-281-2/+8
|\ \ \ | |/ /
| * | Merge pull request #7546 from tk0miya/4030_autosummary_contextTakeshi KOMIYA2020-04-271-2/+8
| |\ \ | | | | | | | | Close #4030: autosummary: Add autosummary_context
| | * | Close #4030: autosummary: Add autosummary_contextTakeshi KOMIYA2020-04-251-2/+8
| | | |