summaryrefslogtreecommitdiff
path: root/sphinx/domains/changeset.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix COM812Adam Turner2023-02-181-1/+1
|
* De-glob mypy whitelist for 'sphinx.domains.*' (#11064)danieleades2023-01-021-4/+4
| | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* Run pyupgrade (#11070)Adam Turner2023-01-021-2/+2
|
* Use PEP 595 typesAdam Turner2023-01-011-8/+8
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* remove blanket 'noqas'Daniel Eades2022-12-161-1/+3
|
* Remove redundant static typing casts (#10612)danieleades2022-07-021-1/+1
|
* Collapse single line docstringsAdam Turner2022-02-201-2/+1
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Fix module docstring indentationAdam Turner2022-02-201-2/+2
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* address some unused loop control variables (B007)Daniel Eades2022-01-121-1/+1
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* Fix #9330: versionchanged causes error during pdf buildTakeshi KOMIYA2021-06-141-4/+12
| | | | | | | | | The versionchanged directive breaks doctree if its contents start with non-paragraph element (ex. lists, tables, and so on). It causes build error in LaTeX. This inserts a paragraph if the first child of the contents is not a paragraph not to break doctree.
* refactor: Use PEP-526 based variable annotation (sphinx.domains)Takeshi KOMIYA2021-03-231-3/+3
|
* refactor: Add a type alias for the option_spec of directives; OptionSpecTakeshi KOMIYA2021-03-131-1/+2
|
* Merge branch '3.x'Takeshi KOMIYA2021-01-011-1/+1
|\
| * 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-11-121-3/+1
|\ \ | |/
| * Sort imports with isortFrançois Freitag2020-11-111-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Hello TYPE_CHECKING!Takeshi KOMIYA2020-03-071-3/+2
| |
* | Use typing.NamedTuple instead of collections.namedtuple as possibleTakeshi KOMIYA2020-03-071-5/+8
|/
* Merge branch '2.0'Takeshi KOMIYA2020-01-011-1/+1
|\
| * A happy new year!Takeshi KOMIYA2020-01-011-1/+1
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-07-011-11/+15
|\ \ | |/
| * refactor: Add data accessors to ChangesetDomainTakeshi KOMIYA2019-06-301-11/+15
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-06-301-18/+12
|\ \ | |/
| * Migrate to py3 style type annotation: sphinx.domains.changesetTakeshi KOMIYA2019-06-301-18/+12
| |
* | Drop features and APIs deprecated in 1.8Takeshi KOMIYA2019-03-301-9/+0
|/
* Add a helper method ``SphinxDirective.set_source_info()``Takeshi KOMIYA2019-03-031-3/+2
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-261-7/+5
|\
| * Fix #5958: versionadded directive causes crash with Python 3.5.0Takeshi KOMIYA2019-01-251-8/+5
| |
* | Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\ \ | |/
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | #5660 adjust expected result to new classesTimotheus Kampik2018-12-231-0/+1
| | | | | | | | Also, fix formating glitch
* | #5660 add classes for different version modicationsTimotheus Kampik2018-12-231-3/+9
| | | | | | | | | | | | | | Generic class: ``versionmodified` *Changed* class: ``changed`` *Added* class: ``added`` *Deprecated* class: ``deprecated``
* | 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-7/+6
| |
* | Move to py3 mode for mypy (and remove many "type: ignore" comments)Takeshi KOMIYA2018-12-151-1/+1
| |
* | Update type annotationsTakeshi KOMIYA2018-12-081-2/+3
| |
* | Fix annotations for Directives (Replace N_co with nodes.Node)Takeshi KOMIYA2018-12-011-3/+6
| |
* | Fix annotations for domainsTakeshi KOMIYA2018-11-301-6/+7
| |
* | Merge pull request #5665 from tk0miya/fix_typehintsTakeshi KOMIYA2018-11-261-0/+1
|\ \ | | | | | | Add sphinx.util.typing:unicode to help mypy-3 migration
| * | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| | |
* | | Fix annotations for Domain.process_doc()Takeshi KOMIYA2018-11-241-1/+1
|/ /
* | Fix typehints: sphinx.domainsTakeshi KOMIYA2018-11-061-1/+1
| |
* | Remove use of six.iteritems()Jon Dufresne2018-09-111-3/+2
|/ | | | In Python 3, dict.items() is always an iterator.
* Move VersionChanges directive to sphinx.domains.changesetTakeshi KOMIYA2018-08-021-1/+72
|
* refactor: Move repository of changesets to domain from envTakeshi KOMIYA2018-08-021-0/+88