Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Expand the mypy whitelist for 'sphinx.util' (#11406) | danieleades | 2023-05-12 | 1 | -1/+1 |
| | |||||
* | Use PEP 595 types | Adam Turner | 2023-01-01 | 1 | -3/+2 |
| | |||||
* | Insert ``from __future__ import annotations`` | Adam Turner | 2023-01-01 | 1 | -0/+2 |
| | |||||
* | Fix `get_terminal_width` on Windows (#10842) | Steffen Rehberg | 2022-09-20 | 1 | -15/+3 |
| | | | | `shutil.get_terminal_size` works as a drop-in replacement for `get_terminal_width`, enabling accurate widths on Windows. | ||||
* | Increase static typing strictness (#10530) | Adam Turner | 2022-06-16 | 1 | -1/+4 |
| | |||||
* | Merge pull request #10260 from hugovk/colour-env-vars | Takeshi KOMIYA | 2022-03-17 | 1 | -0/+4 |
|\ | | | | | Enable FORCE_COLOR and NO_COLOR for terminal colouring | ||||
| * | Enable FORCE_COLOR and NO_COLOR for terminal colouring | Hugo van Kemenade | 2022-03-12 | 1 | -0/+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 |
| | | |||||
* | | 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 |
|/ | |||||
* | A happy new year! | Takeshi KOMIYA | 2022-01-01 | 1 | -1/+1 |
| | |||||
* | Improve sphinx.util.console docstring | Louis Maddox | 2021-07-18 | 1 | -1/+1 |
| | |||||
* | refactor: Use PEP-526 based variable annotation (sphinx.util) | Takeshi KOMIYA | 2021-03-10 | 1 | -4/+4 |
| | |||||
* | 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 | -1/+1 |
| | | | | | | | | | | | | 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 mypy violations (with mypy-0.780) | Takeshi KOMIYA | 2020-06-03 | 1 | -2/+1 |
| | |||||
* | Merge pull request #7289 from blueyed/fix-light-colors | Takeshi KOMIYA | 2020-03-15 | 1 | -3/+3 |
|\ | | | | | console: use bright colors instead of bold | ||||
| * | Use bright colors instead of bold | Daniel Hahler | 2020-03-10 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | The code apparently comes from pygments where it was fixed to use aixterm colors (SGR color codes 90-97m) for bright colors instead of bold. Ref: https://github.com/kovidgoyal/kitty/issues/197#issuecomment-348062665 Ref: https://github.com/pygments/pygments/commit/433b39cc Ref: https://github.com/pygments/pygments/issues/1184 | ||||
* | | Fix mypy violations (with mypy-0.770) | Takeshi KOMIYA | 2020-03-12 | 1 | -1/+1 |
|/ | |||||
* | A happy new year! | Takeshi KOMIYA | 2020-01-01 | 1 | -1/+1 |
| | |||||
* | Migrate to py3 style type annotation: sphinx.util.console | Takeshi KOMIYA | 2019-06-03 | 1 | -25/+12 |
| | |||||
* | refactor: Move terminal_safe() to sphinx.util.console | Takeshi KOMIYA | 2019-02-11 | 1 | -0/+6 |
| | |||||
* | 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. | ||||
* | | Replace all "unicode" type by "str" | Takeshi KOMIYA | 2018-12-15 | 1 | -3/+2 |
| | | |||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 |
|/ | |||||
* | Fix #5036: quickstart: Typing Ctrl-U clears the whole of line | Takeshi KOMIYA | 2018-06-11 | 1 | -3/+15 |
| | |||||
* | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 1 | -3/+2 |
| | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | ||||
* | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 1 | -2/+3 |
| | |||||
* | 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 |
|\ | |||||
| * | Year++ | Takeshi KOMIYA | 2017-03-26 | 1 | -1/+1 |
| | | |||||
* | | Upgrade to mypy-0.5 | Takeshi KOMIYA | 2017-03-03 | 1 | -0/+5 |
| | | |||||
* | | Fix mypy violations | Takeshi KOMIYA | 2017-02-08 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2017-01-12 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix flake8 violations | Takeshi KOMIYA | 2017-01-12 | 1 | -2/+2 |
| | | |||||
* | | Sphinx.status_iterator() is now deprecated | Takeshi KOMIYA | 2017-01-07 | 1 | -1/+1 |
| | | |||||
* | | Adjust code to type annotation | Takeshi KOMIYA | 2016-12-03 | 1 | -1/+1 |
| | | |||||
* | | Add type-check annotations to sphinx.util | Takeshi KOMIYA | 2016-11-16 | 1 | -1/+9 |
|/ | |||||
* | insert blank line(s) to adapt latest flake8/pycodestyle | shimizukawa | 2016-11-16 | 1 | -0/+1 |
| | |||||
* | Merge branch 'stable' | Georg Brandl | 2016-01-14 | 1 | -1/+1 |
|\ | |||||
| * | Obligatory copyright update. | Georg Brandl | 2016-01-14 | 1 | -1/+1 |
| | | |||||
* | | fix some over-broad except: clauses | Georg Brandl | 2015-05-18 | 1 | -3/+1 |
|/ | |||||
* | util: pep8 fixes | Georg Brandl | 2015-03-08 | 1 | -0/+8 |
| | |||||
* | enables flake8 E401: multiple imports on one line | shimizukawa | 2015-03-07 | 1 | -1/+3 |
| | |||||
* | Merge branch 'stable' | Georg Brandl | 2015-01-03 | 1 | -1/+1 |
|\ |