summaryrefslogtreecommitdiff
path: root/sphinx/extension.py
Commit message (Collapse)AuthorAgeFilesLines
* Run pyupgrade (#11070)Adam Turner2023-01-021-2/+2
|
* Use PEP 595 typesAdam Turner2023-01-011-2/+2
|
* Insert ``from __future__ import annotations``Adam Turner2023-01-011-0/+2
|
* Docstring clarifications (#9877)Arthur Milchior2022-09-241-1/+8
| | | | | Co-authored-by: Jakob Lykke Andersen <jakobandersen@users.noreply.github.com> Co-authored-by: Takeshi KOMIYA <i.tkomiya@gmail.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* 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
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* Fix #9708: needs_extension failed to check double-digit version correctlyTakeshi KOMIYA2021-10-091-1/+14
|
* 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
* | Do isortTakeshi KOMIYA2020-11-121-2/+1
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-04-061-1/+1
|\ \ | |/
| * Fix #7409: Convert configuration values on late config-inited eventTakeshi KOMIYA2020-04-051-1/+1
| | | | | | | | | | | | This changes a priority for config-inited handlers of core modules to invoke them at the late of the event. It allows extensions to modify configurations.
* | Hello TYPE_CHECKING!Takeshi KOMIYA2020-03-071-2/+2
|/
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* mypy: Enable disallow_incomplete_defs flag for type checkingTakeshi KOMIYA2019-12-301-1/+1
|
* Migrate to py3 style type annotation: sphinx.extensionTakeshi KOMIYA2019-12-251-9/+7
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-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-3/+2
| |
* | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| |
* | Merge branch 'master' into HEADTakeshi KOMIYA2018-09-221-3/+1
|\ \
| * | Remove use of six.iteritems()Jon Dufresne2018-09-111-3/+1
| |/ | | | | | | 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-3/+2
|\
| * Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA2018-03-131-3/+2
| | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
* | Merge branch '1.7'Takeshi KOMIYA2018-02-181-2/+3
|\ \ | |/
| * Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA2018-02-141-2/+3
| |
* | Merge branch '1.7-release'Takeshi KOMIYA2018-02-101-1/+1
|\ \ | |/
| * Insert a space after the comma in the messagecocoatomo2018-02-071-1/+1
| |
* | Update type annotationsTakeshi KOMIYA2018-02-041-0/+1
| |
* | Reimplement needs_extensions checker as a config-init handlerTakeshi KOMIYA2018-01-311-5/+17
|/
* Merge branch 'happy_new_year' into masterTakeshi KOMIYA2018-01-011-1/+1
|\
| * A happy new year!Takeshi KOMIYA2018-01-011-1/+1
| |
* | Fix parallel_write_safe check was wrongTakeshi KOMIYA2017-12-301-1/+1
|/
* Fix #3833: command line messages are translated unintentionallyTakeshi KOMIYA2017-06-251-6/+6
|
* Update messagesTakeshi KOMIYA2017-05-121-3/+2
|
* Move load_extension() to factoryTakeshi KOMIYA2017-04-221-60/+2
|
* Year++Takeshi KOMIYA2017-03-261-1/+1
|
* Rename module: sphinx.extensions -> sphinx.extension (singular)Takeshi KOMIYA2017-03-261-0/+120
|
* More refactoring:Georg Brandl2008-01-271-83/+0
| | | | | | | * Move refcounting into an addon module. * Rename the extension manager to Application and use it throughout. * Fix some bugs found by pylint. * Add "ifconfig" addon.
* Further refactorings, add extensibility API.Georg Brandl2008-01-211-0/+83