Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix COM812 | Adam Turner | 2023-02-18 | 1 | -1/+1 |
| | |||||
* | Run pyupgrade (#11070) | Adam Turner | 2023-01-02 | 1 | -4/+3 |
| | |||||
* | Use PEP 604 types | Adam Turner | 2023-01-01 | 1 | -2/+2 |
| | |||||
* | Insert ``from __future__ import annotations`` | Adam Turner | 2023-01-01 | 1 | -0/+2 |
| | |||||
* | Improve static typing strictness (#10569) | danieleades | 2022-07-18 | 1 | -2/+4 |
| | |||||
* | 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 |
| | |||||
* | Conform to PEP 257 summary line conventions | Adam Turner | 2022-02-20 | 1 | -2/+1 |
| | |||||
* | Fix module docstring indentation | Adam Turner | 2022-02-20 | 1 | -3/+3 |
| | |||||
* | 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 |
| | |||||
* | A happy new year! | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
| | |||||
* | Use triple quote docstrings consistently | Louis Maddox | 2021-07-18 | 1 | -1/+1 |
| | |||||
* | Close #8813: Show what extension caused it on errors on event handler | Takeshi KOMIYA | 2021-02-04 | 1 | -2/+9 |
| | | | | | Show the module name of the event handler on the error inside it to let users know a hint of the error. | ||||
* | 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 | ||||
* | Allow NoUri from 'missing-reference' handlers. | Jakob Lykke Andersen | 2020-05-17 | 1 | -1/+2 |
| | | | | Also extend documentation of 'missing-reference'. | ||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.errors | Takeshi KOMIYA | 2019-12-25 | 1 | -15/+7 |
| | |||||
* | Fix #6855: Non-RST translated text should be parsed by the appropriate parser | James McKinney | 2019-12-16 | 1 | -0/+5 |
| | |||||
* | refactor: move NoUri to sphinx.errors | Takeshi KOMIYA | 2019-03-02 | 1 | -0/+5 |
| | |||||
* | Merge branch '1.8' | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
|\ | |||||
| * | A happy new year! | Takeshi KOMIYA | 2019-01-02 | 1 | -1/+1 |
| | | |||||
* | | 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. | ||||
* | | Use Python 3 super() argument-less syntax | Jon Dufresne | 2018-12-15 | 1 | -2/+2 |
| | | | | | | | | | | | | The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super | ||||
* | | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -2/+1 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 |
| | | |||||
* | | Use super() to call parent class's method | Jon Dufresne | 2018-11-11 | 1 | -2/+2 |
|/ | |||||
* | Fix AttributeError in ExtensionError | Jon Dufresne | 2018-09-09 | 1 | -0/+1 |
| | | | | | | | | | | | | | | In Python 3, the attribute BaseException.message doesn't exist. $ python3 >>> from sphinx.errors import ExtensionError >>> e = ExtensionError('foo') >>> repr(e) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "sphinx/sphinx/errors.py", line 65, in __repr__ return '%s(%r)' % (self.__class__.__name__, self.message) AttributeError: 'ExtensionError' object has no attribute 'message' | ||||
* | Handle errors on scanning documents (refs: #5114) | Takeshi KOMIYA | 2018-07-16 | 1 | -0/+5 |
| | |||||
* | Add BuildEnvironment.setup() to re-initialize (after unpickle) | Takeshi KOMIYA | 2018-05-21 | 1 | -0/+5 |
| | |||||
* | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-18 | 1 | -3/+2 |
|\ | |||||
| * | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 1 | -3/+2 |
| | | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | ||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-02-18 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+3 |
| | | |||||
* | | Merge pull request #4436 from stephenfin/directory-validation | Takeshi KOMIYA | 2018-01-21 | 1 | -0/+5 |
|\ \ | | | | | | | app: Centralize directory validation | ||||
| * | | app: Centralize directory validation | Stephen Finucane | 2018-01-20 | 1 | -0/+5 |
| |/ | | | | | | | | | | | | | | | | | | | This allows us to avoid duplication of code and ensure validation happens regardless of who's initializing the class. We introduce a new exception - ApplicationError - to indicate these kinds of issues. This subclasses SphinxError, meaning we don't need to modify our exception handling code. Signed-off-by: Stephen Finucane <stephen@that.guru> | ||||
* | | doc: Move sphinx.errors API docs to code | Stephen Finucane | 2018-01-20 | 1 | -14/+35 |
|/ | | | | | | | This allows us to do something like 'help(sphinx.errors)' in code. We reword the exception descriptions per Python stdlib conventions. Signed-off-by: Stephen Finucane <stephen@that.guru> | ||||
* | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 |
| | |||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
|\ | |||||
| * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | | |||||
* | | Fix mypy violations | Takeshi KOMIYA | 2017-02-08 | 1 | -0/+10 |
|/ | |||||
* | Fix flake8 violation | Takeshi KOMIYA | 2017-01-08 | 1 | -2/+0 |
| | |||||
* | Fix Sphinx crashes on parallel build with an extension which raises ↵ | Takeshi KOMIYA | 2017-01-08 | 1 | -4/+3 |
| | | | | unserializable exception | ||||
* | Derive SphinxParallelError from SphinxError | Matthias Geier | 2016-05-20 | 1 | -1/+4 |
| | |||||
* | Obligatory copyright update. | Georg Brandl | 2016-01-14 | 1 | -1/+1 |
| | |||||
* | Merge branch 'stable' | Georg Brandl | 2015-01-03 | 1 | -1/+1 |
|\ | |||||
| * | all: update copyright | Georg Brandl | 2015-01-03 | 1 | -1/+1 |
| | | |||||
* | | Factor out parallel building into a utility class. Better error handling | Georg Brandl | 2014-09-22 | 1 | -0/+13 |
|/ | | | | with traceback of the parallel process saved in the error log. | ||||
* | Update copyright year. | Georg Brandl | 2014-03-01 | 1 | -1/+1 |
| | |||||
* | Copyright update. | Georg Brandl | 2013-01-01 | 1 | -1/+1 |
| |