Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -19/+18 | |
| | | | ||||||
| * | | refactor: Replace six.StringIO by io.StringIO | Takeshi KOMIYA | 2018-12-15 | 1 | -1/+1 | |
| | | | ||||||
* | | | Fix #5770: doctest: Follow highlight_language on highlighting doctest block | Takeshi KOMIYA | 2018-12-15 | 1 | -2/+8 | |
|/ / | ||||||
* | | Move to py3 mode for mypy (and remove many "type: ignore" comments) | Takeshi KOMIYA | 2018-12-15 | 1 | -13/+8 | |
| | | ||||||
* | | Fix annotations for Directives (Replace N_co with nodes.Node) | Takeshi KOMIYA | 2018-12-01 | 1 | -2/+2 | |
| | | ||||||
* | | Fix annotations for extensions | Takeshi KOMIYA | 2018-12-01 | 1 | -1/+2 | |
| | | ||||||
* | | Fix annotations for minor methods and functions | Takeshi KOMIYA | 2018-11-30 | 1 | -2/+2 | |
| | | ||||||
* | | Merge pull request #5675 from tk0miya/refactor_super | Takeshi KOMIYA | 2018-11-28 | 1 | -1/+1 | |
|\ \ | | | | | | | refactor: Use super() to call methods of superclass | |||||
| * | | refactor: Use super() to call methods of superclass | Takeshi KOMIYA | 2018-11-28 | 1 | -1/+1 | |
| | | | ||||||
* | | | Fix annotaions for extensions | Takeshi KOMIYA | 2018-11-28 | 1 | -2/+2 | |
|/ / | ||||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 | |
| | | ||||||
* | | Remove use of six.binary_type | Jon Dufresne | 2018-11-11 | 1 | -4/+2 | |
| | | | | | | | | | | | | Remove type checks for cases that don't apply to Python 3. For remaining uses, use bytes instead | |||||
* | | Replace all six.itervalues()/.iteritems() with .values()/.items() | Jon Dufresne | 2018-09-23 | 1 | -5/+5 | |
| | | ||||||
* | | Merge branch 'master' into HEAD | Takeshi KOMIYA | 2018-09-22 | 1 | -33/+24 | |
|\ \ | ||||||
| * | | Fix flake8 violation | Takeshi KOMIYA | 2018-09-22 | 1 | -1/+0 | |
| | | | ||||||
| * | | Merge branch 'master' into open | Takeshi KOMIYA | 2018-09-22 | 1 | -30/+22 | |
| |\ \ | ||||||
| | * | | refactoring: Drop PY2 and PY3 flags | Takeshi KOMIYA | 2018-09-22 | 1 | -29/+21 | |
| | |/ | ||||||
| | * | Fix #5417: Sphinx fails to build with syntax error in Python 2.7.5 | Takeshi KOMIYA | 2018-09-16 | 1 | -1/+1 | |
| | | | ||||||
| * | | Prefer builtin open() over io.open() and codecs.open() | Jon Dufresne | 2018-09-11 | 1 | -2/+2 | |
| |/ | | | | | | | | | | | | | | | | | | | | | | | In Python3, the functions io.open() is an alias of the builtin open() and codecs.open() is functionally equivalent. To reduce indirection, number of imports, and number of patterns, always prefer the builtin. https://docs.python.org/3/library/io.html#high-level-module-interface > io.open() > > This is an alias for the builtin open() function. | |||||
* | | Remove unnecessary object from class definitions | Jon Dufresne | 2018-09-11 | 1 | -2/+2 | |
|/ | | | | | In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary. | |||||
* | Ref #5273: doctest: added a missing type hint | Antti Kaihola | 2018-08-16 | 1 | -1/+1 | |
| | ||||||
* | Fix #5273: doctest: add :skipif: option for doctest directives | Antti Kaihola | 2018-08-07 | 1 | -2/+15 | |
| | | | | This option allows conditional skipping of doctests. | |||||
* | refactor: Replace Directive by SphinxDirective | Takeshi KOMIYA | 2018-05-11 | 1 | -2/+3 | |
| | ||||||
* | Merge branch '1.7' | Takeshi KOMIYA | 2018-04-09 | 1 | -2/+2 | |
|\ | ||||||
| * | Fix #4783: Sphinx crashed when drives of srcdir and outdir are different | Takeshi KOMIYA | 2018-04-02 | 1 | -2/+2 | |
| | | ||||||
* | | 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 | -9/+9 | |
|/ | ||||||
* | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+2 | |
| | ||||||
* | Avoid misreporting line number | Zac-HD | 2018-02-09 | 1 | -2/+20 | |
| | ||||||
* | Get correct filename for each doctest block | Zac-HD | 2018-02-09 | 1 | -22/+33 | |
| | | | | | This is complicated because doctests may be included from other files, eg. dosctrings in a Python module. | |||||
* | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 1 | -8/+7 | |
| | ||||||
* | Fix packaging module can't handle 3.7.0a4+ correctly | Takeshi KOMIYA | 2018-01-25 | 1 | -2/+2 | |
| | ||||||
* | Fix #4137: doctest: Make doctest and testcode blocks highlighted | Takeshi KOMIYA | 2018-01-14 | 1 | -1/+5 | |
| | ||||||
* | Merge pull request #4354 from stephenfin/builder-success-message | Takeshi KOMIYA | 2018-01-13 | 1 | -0/+2 | |
|\ | | | | | Add 'Builder.epilog' attribute | |||||
| * | builders: Add 'Builder.epilog' option | Stephen Finucane | 2018-01-11 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | This allows builders to emit a final epilog message containing information such as where resulting files can be found. This is only emitted if the build was successful. This allows us to remove this content from the 'make_mode' tool and the legacy 'Makefile' and 'make.bat' templates. There's room for more dramatic simplification of the former, but this will come later. Signed-off-by: Stephen Finucane <stephen@that.guru> | |||||
* | | Fix #4183: doctest: ``:pyversion:`` option also follows PEP-440 specification | Takeshi KOMIYA | 2018-01-08 | 1 | -23/+16 | |
|/ | ||||||
* | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 1 | -1/+1 | |
| | ||||||
* | Fix mypy violations (for mypy-0.520) | Takeshi KOMIYA | 2017-07-15 | 1 | -16/+16 | |
| | ||||||
* | Update type annotations for new mypy | Takeshi KOMIYA | 2017-05-07 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'stable' | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 | |
|\ | ||||||
| * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 | |
| | | ||||||
* | | Upgrade to mypy-0.5 | Takeshi KOMIYA | 2017-03-03 | 1 | -1/+1 | |
| | | ||||||
* | | Fix mypy violations | Takeshi KOMIYA | 2017-02-21 | 1 | -4/+3 | |
| | | ||||||
* | | Add mypy annotations | Takeshi KOMIYA | 2017-02-10 | 1 | -0/+1 | |
| | | ||||||
* | | Remove unused "type: ignore" | Takeshi KOMIYA | 2017-02-06 | 1 | -1/+1 | |
| | | ||||||
* | | Fix mypy violation | Takeshi KOMIYA | 2017-01-28 | 1 | -1/+1 | |
| | | ||||||
* | | From version 1.5 to 1.6. Warnings wrapped with locale. | Marco Buttu | 2017-01-26 | 1 | -5/+6 | |
| | | ||||||
* | | In case of wrong option, warn the right reason. | Marco Buttu | 2017-01-25 | 1 | -2/+7 | |
| | | | | | | | | | | | | For instance, in case of `:options: +SKIPO` the message was "missing '+' or '-' in +SKIPO option`. Now it will be "SKIPO is not a valid option." | |||||
* | | Comparison made by distutils.version.LooseVersion | Marco Buttu | 2017-01-15 | 1 | -3/+3 | |
| | |