Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix COM812 | Adam Turner | 2023-02-18 | 1 | -1/+1 |
| | |||||
* | Use PEP 604 types | Adam Turner | 2023-01-01 | 1 | -4/+4 |
| | |||||
* | Use PEP 595 types | Adam Turner | 2023-01-01 | 1 | -10/+10 |
| | |||||
* | Insert ``from __future__ import annotations`` | Adam Turner | 2023-01-01 | 1 | -0/+2 |
| | |||||
* | Further improve type annotations, reduce mypy whitelist (#10770) | danieleades | 2022-08-28 | 1 | -1/+1 |
| | | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> | ||||
* | Improve static typing strictness (#10569) | danieleades | 2022-07-18 | 1 | -3/+3 |
| | |||||
* | Collapse single line docstrings | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove copyright and licence fields | Adam Turner | 2022-02-20 | 1 | -3/+0 |
| | |||||
* | Fix module docstring indentation | Adam Turner | 2022-02-20 | 1 | -2/+2 |
| | |||||
* | Fix module docstring first line | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Remove module titles in docstrings | Adam Turner | 2022-02-19 | 1 | -3/+0 |
| | |||||
* | address some unused loop control variables (B007) | Daniel Eades | 2022-01-12 | 1 | -1/+1 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
| | |||||
* | Fix typos discovered by codespell | Christian Clauss | 2021-09-08 | 1 | -1/+1 |
| | |||||
* | Fix typo | Eisuke Kawashima | 2021-07-08 | 1 | -1/+1 |
| | |||||
* | refactor: Use PEP-526 based variable annotation (sphinx.environment) | Takeshi KOMIYA | 2021-03-25 | 1 | -2/+2 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2021-01-01 | 1 | -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 isort | François Freitag | 2020-11-11 | 1 | -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 page | Takeshi KOMIYA | 2020-07-18 | 1 | -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 entries | Takeshi KOMIYA | 2020-03-01 | 1 | -2/+2 |
| | |||||
* | Close #7220: genindex: Show "main" index entries at first | Takeshi KOMIYA | 2020-02-29 | 1 | -3/+12 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Stop to use deprecated API: env.indexentries | Takeshi KOMIYA | 2019-12-25 | 1 | -1/+4 |
| | |||||
* | Fix #736: Invalid sort in pair index | Takeshi KOMIYA | 2019-07-06 | 1 | -3/+13 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.environment.adapters.indexentries | Takeshi KOMIYA | 2019-07-06 | 1 | -16/+11 |
| | |||||
* | refactor: move NoUri to sphinx.errors | Takeshi KOMIYA | 2019-03-02 | 1 | -2/+1 |
| | |||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| | | |||||
* | | Replace use of six.text_type with str | Jon Dufresne | 2018-12-18 | 1 | -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 files | Jon Dufresne | 2018-12-16 | 1 | -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 strings | Takeshi KOMIYA | 2018-12-16 | 1 | -2/+2 |
| | | |||||
* | | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -8/+7 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'master' into HEAD | Takeshi KOMIYA | 2018-09-22 | 1 | -3/+3 |
|\ \ | |||||
| * | | Remove use of six.iteritems() | Jon Dufresne | 2018-09-11 | 1 | -3/+3 |
| |/ | | | | | | | In Python 3, dict.items() is always an iterator. | ||||
* | | Remove unnecessary object from class definitions | Jon Dufresne | 2018-09-11 | 1 | -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 KOMIYA | 2018-03-18 | 1 | -2/+2 |
|\ | |||||
| * | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 1 | -2/+2 |
| | | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | ||||
* | | Make console and warning messages translatable | Takeshi KOMIYA | 2018-03-03 | 1 | -2/+2 |
|/ | |||||
* | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+2 |
| | |||||
* | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 1 | -1/+1 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | |||||
* | Add Extension class | Takeshi KOMIYA | 2017-03-23 | 1 | -2/+2 |
| | |||||
* | Upgrade to mypy-0.5 | Takeshi KOMIYA | 2017-03-03 | 1 | -1/+1 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-01 | 1 | -7/+10 |
| | |||||
* | Add mypy annotations | Takeshi KOMIYA | 2017-02-10 | 1 | -0/+3 |
| | |||||
* | Add IndexEntries adapter | Takeshi KOMIYA | 2017-01-28 | 1 | -0/+157 |