summaryrefslogtreecommitdiff
path: root/sphinx/ext/autosummary/generate.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | Merge branch '2.0'Takeshi KOMIYA2019-12-251-0/+5
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | Fix #6936: sphinx-autogen: raises AttributeErrorTakeshi KOMIYA2019-12-221-0/+5
| | | | | | |
* | | | | | | Merge branch '2.0'Takeshi KOMIYA2019-11-301-4/+24
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | autosummary: Allows to document a member forcedly if skip-member handler ↵Takeshi KOMIYA2019-11-161-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | returns False
| * | | | | | Close #6798: autosummary: emit ``autodoc-skip-member`` event on generating ↵Takeshi KOMIYA2019-11-161-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | stub file
* | | | | | | Merge branch '2.0'jfbu2019-08-011-1/+5
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | / | |_|_|_|_|/ |/| | | | |
| * | | | | Fix type annotation for python 3.5.1Takeshi KOMIYA2019-07-131-1/+5
| | | | | |
* | | | | | Fix #247: autosummary: Add autosummary_generate_option to overwrite old stub ↵Takeshi KOMIYA2019-07-071-13/+20
|/ / / / / | | | | | | | | | | | | | | | file
* | | | | Migrate to py3 style type annotation: sphinx.ext.autosummary.generateTakeshi KOMIYA2019-07-041-41/+28
| | | | |
* | | | | Suppress deprecation warning for autosummaryTakeshi KOMIYA2019-06-191-6/+8
| | | | |
* | | | | refactor: Separate generate_autosummary_content() from ↵Takeshi KOMIYA2019-06-181-61/+70
| | | | | | | | | | | | | | | | | | | | generate_autosummary_docs()
* | | | | autosummary: deprecate info and warn arguments for generate_autosummary_docs()Takeshi KOMIYA2019-06-101-3/+22
| | | | |
* | | | | Fix #6452: autosummary: crashed when generating document of propertiesTakeshi KOMIYA2019-06-071-1/+1
| |_|_|/ |/| | |
* | | | Fix autosummary should use new documentersTakeshi KOMIYA2019-05-301-2/+4
| | | |
* | | | refactor: Add AutosummaryRenderer; rendering utility for autosummaryTakeshi KOMIYA2019-05-261-31/+44
| |_|/ |/| |
* | | refactor get_members() in autosummaryTakeshi KOMIYA2019-05-131-11/+6
| | |
* | | autodoc: Add PropertyDocumenter to detect propertiesTakeshi KOMIYA2019-05-121-4/+9
| |/ |/|
* | Clean up import for annotationsTakeshi KOMIYA2019-03-061-2/+0
|/
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Merge branch '1.8'Takeshi KOMIYA2018-12-181-1/+1
|\ \ | |/
| * Fix #5724: quickstart: sphinx-quickstart fails when $LC_ALL is emptyTakeshi KOMIYA2018-12-171-1/+1
| |
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
* | Replace all "unicode" type by "str"Takeshi KOMIYA2018-12-151-16/+15
| |
* | Remove print_function featureTakeshi KOMIYA2018-12-151-1/+0
| |
* | Move to py3 mode for mypy (and remove many "type: ignore" comments)Takeshi KOMIYA2018-12-151-4/+3
| |
* | Simplify open() call by removing default modeJon Dufresne2018-12-111-1/+1
| | | | | | | | | | | | | | | | | | The open() function opens files in read-only text mode by default. Drop the mode argument to be slightly simpler and more idiomatic. https://docs.python.org/3/library/functions.html#open > The default mode is 'r' (open for reading text, synonym of 'rt').
* | Fix annotations for extensionsTakeshi KOMIYA2018-12-011-3/+2
| |
* | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| |
* | Merge branch '1.8'Takeshi KOMIYA2018-10-161-7/+7
|\ \ | |/
| * Fix mypy violationsTakeshi KOMIYA2018-10-161-7/+7
| |
* | Merge branch 'master' into HEADTakeshi KOMIYA2018-09-221-3/+2
|\ \
| * | Prefer builtin open() over io.open() and codecs.open()Jon Dufresne2018-09-111-3/+2
| |/ | | | | | | | | | | | | | | | | | | | | | | In Python3, the functions io.open() is an alias of the builtin open() and codecs.open() is functionally equivalent. To reduce indirection, number of imports, and number of patterns, always prefer the builtin. https://docs.python.org/3/library/io.html#high-level-module-interface > io.open() > > This is an alias for the builtin open() function.
* | Remove unnecessary object from class definitionsJon Dufresne2018-09-111-1/+1
|/ | | | | In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary.
* Fix #2401: autodoc: ``:members:`` causes ``:special-members:`` not to be shownTakeshi KOMIYA2018-09-031-2/+3
|
* Merge branch '1.7'Takeshi KOMIYA2018-07-171-1/+1
|\
| * Fix flake8 violationsTakeshi KOMIYA2018-07-161-1/+1
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-07-151-1/+1
|\ \ | |/
| * Fix mypy violationsTakeshi KOMIYA2018-07-151-1/+1
| |
* | expose inherited_members to autosummary templateKenichi Maehashi2018-06-011-0/+2
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-03-181-2/+2
|\ \ | |/
| * Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA2018-03-131-2/+2
| | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
* | Make sphinx-* commands translatableTakeshi KOMIYA2018-03-031-13/+14
| |
* | Supports i18n console outputTakeshi KOMIYA2018-02-251-0/+5
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-02-181-2/+2
|\ \ | |/
| * Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA2018-02-141-2/+2
| |
* | Merge branch '1.7-release'Takeshi KOMIYA2018-02-041-1/+1
|\ \ | |/
| * Fix #4531: autosummary: methods are not treated as attributesTakeshi KOMIYA2018-02-031-1/+1
| |
* | Update type annotationsTakeshi KOMIYA2018-02-041-0/+1
|/
* Merge pull request #4247 from jorisvandenbossche/autosummary-attributesTakeshi KOMIYA2018-01-301-6/+4
|\ | | | | BUG: autosummary to list all class members