summaryrefslogtreecommitdiff
path: root/sphinx/environment/adapters/indexentries.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix COM812Adam Turner2023-02-181-1/+1
|
* Use PEP 604 typesAdam Turner2023-01-011-4/+4
|
* Use PEP 595 typesAdam Turner2023-01-011-10/+10
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* Further improve type annotations, reduce mypy whitelist (#10770)danieleades2022-08-281-1/+1
| | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* Improve static typing strictness (#10569)danieleades2022-07-181-3/+3
|
* 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 typos discovered by codespellChristian Clauss2021-09-081-1/+1
|
* Fix typoEisuke Kawashima2021-07-081-1/+1
|
* refactor: Use PEP-526 based variable annotation (sphinx.environment)Takeshi KOMIYA2021-03-251-2/+2
|
* 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
* Sort imports with isortFrançois Freitag2020-11-111-4/+2
| | | | | | | | | | | | 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.
* Fix #2050: Symbols sections are appeared twice in the index pageTakeshi KOMIYA2020-07-181-5/+9
| | | | | | Multibyte symbols are categorized to independent symbols section different to single byte symbols. This integrate them to a single section.
* refactor: Sorting index entriesTakeshi KOMIYA2020-03-011-2/+2
|
* Close #7220: genindex: Show "main" index entries at firstTakeshi KOMIYA2020-02-291-3/+12
|
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* Stop to use deprecated API: env.indexentriesTakeshi KOMIYA2019-12-251-1/+4
|
* Fix #736: Invalid sort in pair indexTakeshi KOMIYA2019-07-061-3/+13
|
* Migrate to py3 style type annotation: sphinx.environment.adapters.indexentriesTakeshi KOMIYA2019-07-061-16/+11
|
* refactor: move NoUri to sphinx.errorsTakeshi KOMIYA2019-03-021-2/+1
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Replace use of six.text_type with strJon Dufresne2018-12-181-3/+1
| | | | | | | | | | This removes the last use of the six package allowing Sphinx to remove it as a dependency.
* | 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.
* | refactor: Remove u-prefix from stringsTakeshi KOMIYA2018-12-161-2/+2
| |
* | Replace all "unicode" type by "str"Takeshi KOMIYA2018-12-151-8/+7
| |
* | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| |
* | Merge branch 'master' into HEADTakeshi KOMIYA2018-09-221-3/+3
|\ \
| * | Remove use of six.iteritems()Jon Dufresne2018-09-111-3/+3
| |/ | | | | | | In Python 3, dict.items() is always an iterator.
* | 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.
* 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 console and warning messages translatableTakeshi KOMIYA2018-03-031-2/+2
|/
* Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA2018-02-141-2/+2
|
* Use flake8-import-orderTakeshi KOMIYA2018-01-281-1/+1
|
* A happy new year!Takeshi KOMIYA2018-01-011-1/+1
|
* Merge branch 'stable'Takeshi KOMIYA2017-03-261-1/+1
|
* Add Extension classTakeshi KOMIYA2017-03-231-2/+2
|
* Upgrade to mypy-0.5Takeshi KOMIYA2017-03-031-1/+1
|
* Merge branch 'stable'Takeshi KOMIYA2017-03-011-7/+10
|
* Add mypy annotationsTakeshi KOMIYA2017-02-101-0/+3
|
* Add IndexEntries adapterTakeshi KOMIYA2017-01-281-0/+157