summaryrefslogtreecommitdiff
path: root/sphinx/registry.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | Do isortTakeshi KOMIYA2020-11-121-2/+1
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-10-241-2/+2
|\ \ | |/
| * refactor: Change signature of app.add_source_parser()Takeshi KOMIYA2020-10-041-2/+2
| | | | | | | | | | | | To make compatible with old versions, app.add_source_parser() have taken two types of arguments. But the compatibility was no longer needed since 3.0. So it would be better to use clearer signature.
* | Merge branch '3.x' into masterTakeshi KOMIYA2020-09-131-1/+1
|\ \ | |/
| * Fix typo'd comment in SphinxComponentRegistry.add_html_math_renderer()Dominic Davis-Foster2020-08-251-1/+1
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-08-141-0/+7
|\ \ | |/
| * Check if LaTeX package already addedYves Chevallier2020-08-091-0/+7
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-07-051-9/+12
|\ \ | |/
| * Fix exception causes all over the codebaseRam Rachum2020-06-141-9/+12
| |
* | Merge branch '3.x'Takeshi KOMIYA2020-06-041-2/+7
|\ \ | |/
| * latex: Allow to add LaTeX package after hyperref loaded via APITakeshi KOMIYA2020-05-241-2/+7
| |
* | 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
| |
* | Deprecate codes for python 3.5Takeshi KOMIYA2020-03-071-2/+1
|/
* Merge branch '2.x' into 3.xTakeshi KOMIYA2020-03-011-1/+1
|\
| * refactor: Do not evaluate debug message on callingTakeshi KOMIYA2020-02-291-1/+1
| |
* | refactor: Update type annotations in sphinx.*Takeshi KOMIYA2020-02-231-1/+1
| |
* | Merge branch '2.0'Takeshi KOMIYA2020-01-011-4/+5
|\ \ | |/
| * mypy: Enable disallow_incomplete_defs flag for type checkingTakeshi KOMIYA2019-12-301-5/+6
| |
* | Fix flake8 violationsTakeshi KOMIYA2019-12-251-2/+0
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-12-251-90/+67
|\ \ | |/
| * Migrate to py3 style type annotation: sphinx.registryTakeshi KOMIYA2019-12-251-95/+69
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-08-191-3/+5
|\ \ | |/
| * Switch uses of __import__ to importlib.get_module()Jon Dufresne2019-08-171-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Python docs for __import__ recommend using importlib.get_module(). https://docs.python.org/3/library/functions.html#__import__ > Note: This is an advanced function that is not needed in everyday > Python programming, unlike importlib.import_module(). As importlib.get_module() uses the Python module cache and returns the module, this also allows simplifying many module cache checks of use of sys.modules. importlib.get_module() has been available since Python 3.3.
* | Merge branch '2.0'jfbu2019-08-011-1/+2
|\ \ | |/
| * Fix type annotation for python 3.5.1Takeshi KOMIYA2019-07-131-1/+2
| |
* | Drop features and APIs deprecated in 1.8Takeshi KOMIYA2019-03-301-59/+7
|/
* refactor: Use simple Input classTakeshi KOMIYA2018-12-171-1/+3
|
* 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-46/+46
|
* 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-3/+3
|
* Fix annotationsTakeshi KOMIYA2018-12-081-1/+2
|
* Fix annotations of enumerable_nodesTakeshi KOMIYA2018-12-031-2/+2
|
* Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-1/+1
|
* Fix annotations for app.add_nodes() and related functionsTakeshi KOMIYA2018-11-241-2/+2
|
* Fix annotations for registryTakeshi KOMIYA2018-11-231-5/+5
|
* Fix typehints: sphinx.registryTakeshi KOMIYA2018-11-051-2/+2
|
* Merge branch '1.8'Takeshi KOMIYA2018-11-011-3/+3
|\
| * Fix #5471: Show appropriate warning for deprecated APIsTakeshi KOMIYA2018-10-171-3/+3
| |
* | refactor: Deprecate app._setting_up_extensionTakeshi KOMIYA2018-10-171-32/+32
| |
* | Merge branch '1.8'Takeshi KOMIYA2018-10-161-1/+1
|\ \ | |/
| * Fix typo: Translatoro -> TranslatorMatthias Geier2018-09-241-1/+1
| |
* | Replace all six.itervalues()/.iteritems() with .values()/.items()Jon Dufresne2018-09-231-2/+1
| |
* | Merge branch 'master' into HEADTakeshi KOMIYA2018-09-221-8/+8
|\ \
| * \ Merge branch 'master' into drop-iteritemsTakeshi KOMIYA2018-09-221-3/+3
| |\ \ | | |/
| | * Fix TypeError in error message when override is prohibitedZejun Wu2018-09-211-3/+3
| | |
| * | Remove use of six.iteritems()Jon Dufresne2018-09-111-5/+5
| |/ | | | | | | 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.