Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | Fix mypy violations (for mypy-0.720) | Takeshi KOMIYA | 2019-07-13 | 1 | -4/+4 | |
| | | | ||||||
* | | | Merge branch '2.0' | Takeshi KOMIYA | 2019-06-29 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Merge branch '2.1.3' into 2.0 | Takeshi KOMIYA | 2019-06-29 | 1 | -1/+1 | |
| |\ \ | | |/ | ||||||
| | * | Fix mypy violations (for mypy-0.711) | Takeshi KOMIYA | 2019-06-29 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge branch '2.0' | Takeshi KOMIYA | 2019-06-21 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Merge branch '2.1.3' into 2.0 | Takeshi KOMIYA | 2019-06-21 | 1 | -1/+1 | |
| |\ \ | | |/ | ||||||
| | * | Fix mypy violations (for mypy-0.710) | Takeshi KOMIYA | 2019-06-21 | 1 | -1/+1 | |
| | | | ||||||
* | | | Merge branch '2.0' | Takeshi KOMIYA | 2019-06-09 | 1 | -52/+28 | |
|\ \ \ | |/ / | ||||||
| * | | Migrate to py3 style type annotation: sphinx.util.inspect | Takeshi KOMIYA | 2019-06-02 | 1 | -54/+30 | |
| |/ | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-06-01 | 1 | -2/+7 | |
|\ \ | |/ | ||||||
| * | Fix #6347: autodoc: crashes with a plain Tuple on Python 3.6 and 3.5 | Takeshi KOMIYA | 2019-05-29 | 1 | -2/+7 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-05-29 | 1 | -6/+12 | |
|\ \ | |/ | ||||||
| * | Close #744: autodoc: Support abstractmethod | Takeshi KOMIYA | 2019-05-15 | 1 | -3/+9 | |
| | | ||||||
| * | Merge branch '2.0' into 6311_autosummary_confused_by_complex_typehints2 | Takeshi KOMIYA | 2019-05-13 | 1 | -0/+6 | |
| |\ | ||||||
| * | | Fix #6311: autosummary: autosummary table gets confused by complex type hints | Takeshi KOMIYA | 2019-05-12 | 1 | -3/+3 | |
| | | | ||||||
* | | | Merge branch '2.0' | Takeshi KOMIYA | 2019-05-13 | 1 | -0/+6 | |
|\ \ \ | | |/ | |/| | ||||||
| * | | Add sphinx.util.inspect:isproperty() | Takeshi KOMIYA | 2019-05-12 | 1 | -0/+6 | |
| |/ | ||||||
* | | Fix flake8 violation | Takeshi KOMIYA | 2019-05-06 | 1 | -1/+0 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-05-06 | 1 | -2/+15 | |
|\ \ | |/ | ||||||
| * | Add sphinx.util.inspect:iscoroutinefunction() | Takeshi KOMIYA | 2019-04-23 | 1 | -2/+14 | |
| | | ||||||
* | | Merge branch '2.0' | Takeshi KOMIYA | 2019-04-14 | 1 | -0/+42 | |
|\ \ | |/ | ||||||
| * | Add sphinx.util.inspect:isattributedescriptor() | Takeshi KOMIYA | 2019-04-14 | 1 | -0/+39 | |
| | | ||||||
| * | refactor: sphinx.util.inspect module provides inspect.is* functions | Takeshi KOMIYA | 2019-04-13 | 1 | -0/+3 | |
| | | ||||||
* | | Drop features and APIs deprecated in 1.8 | Takeshi KOMIYA | 2019-03-30 | 1 | -22/+0 | |
|/ | ||||||
* | refactor: Move NoneType to sphinx.util.typing | Takeshi KOMIYA | 2019-02-11 | 1 | -1/+1 | |
| | ||||||
* | 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 enum existence guard (#5858) | Jon Dufresne | 2018-12-23 | 1 | -4/+0 | |
| | | | | | | The enum module is always available since Python 3.4. | |||||
* | | Merge pull request #5509 from stephenfin/remove-future-imports | Takeshi KOMIYA | 2018-12-17 | 1 | -1/+0 | |
|\ \ | | | | | | | Remove future imports | |||||
| * | | py3: Remove (most) __future__ imports | Stephen Finucane | 2018-12-17 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were two used: - print_function - absolute_import Both of these are mandatory in Python 3.0 onwards [1] and can therefore be removed...mostly. Unfortunately, mypy is still running in Python 2.7 mode, meaning we need the 'print_function' future wherever we're calling 'print' with the 'file' argument. There's also a single 'absolute_import' future that must be retained as its removal breaks a test for as-yet unknown reasons. TODOs are added to resolve both issues in the future. [1] https://docs.python.org/3/library/__future__.html Signed-off-by: Stephen Finucane <stephen@that.guru> | |||||
* | | | 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 | -9/+8 | |
| | | ||||||
* | | Merge pull request #5784 from tk0miya/refactor_hack_for_py2 | Takeshi KOMIYA | 2018-12-15 | 1 | -5/+7 | |
|\ \ | | | | | | | Refactor hack for py2 | |||||
| * | | Remove a hack for py2 from isclassmethod() | Takeshi KOMIYA | 2018-12-15 | 1 | -5/+2 | |
| | | | ||||||
| * | | Deprecate sphinx.util.inspect.Parameter | Takeshi KOMIYA | 2018-12-15 | 1 | -0/+5 | |
| | | | ||||||
* | | | refactor: Replace six.StringIO by io.StringIO | Takeshi KOMIYA | 2018-12-15 | 1 | -2/+1 | |
|/ / | ||||||
* | | Move to py3 mode for mypy (and remove many "type: ignore" comments) | Takeshi KOMIYA | 2018-12-15 | 1 | -13/+13 | |
| | | ||||||
* | | Fix annotations (in some modules) | Takeshi KOMIYA | 2018-12-01 | 1 | -2/+2 | |
| | | ||||||
* | | Add sphinx.util.typing:unicode to help mypy-3 migration | Takeshi KOMIYA | 2018-11-24 | 1 | -0/+1 | |
| | | ||||||
* | | Replace six.string_types with native str | Jon Dufresne | 2018-11-21 | 1 | -5/+4 | |
| | | ||||||
* | | Remove use of six.binary_type | Jon Dufresne | 2018-11-11 | 1 | -4/+1 | |
| | | | | | | | | | | | | Remove type checks for cases that don't apply to Python 3. For remaining uses, use bytes instead | |||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-11-01 | 1 | -13/+6 | |
|\ \ | |/ | ||||||
| * | Fix #5480: autodoc: unable to find type hints for unresolvable Forward ↵ | Takeshi KOMIYA | 2018-10-15 | 1 | -13/+6 | |
| | | | | | | | | references | |||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-10-16 | 1 | -2/+6 | |
|\ \ | |/ | ||||||
| * | Fix #5498: autodoc: unable to find type hints for a ``functools.partial`` | Takeshi KOMIYA | 2018-10-14 | 1 | -2/+6 | |
| | | ||||||
* | | Replace all six.itervalues()/.iteritems() with .values()/.items() | Jon Dufresne | 2018-09-23 | 1 | -2/+2 | |
| | | ||||||
* | | Remove uses of six.moves that did not cause any type errors | Jon Dufresne | 2018-09-23 | 1 | -1/+1 | |
| | | | | | | | | | | Removal of the remaining imports may require passing "--python-version 3.5" to the mypy command. | |||||
* | | Merge branch 'master' into HEAD | Takeshi KOMIYA | 2018-09-22 | 1 | -262/+94 | |
|\ \ | ||||||
| * | | refactoring: Drop PY2 and PY3 flags | Takeshi KOMIYA | 2018-09-22 | 1 | -158/+92 | |
| | | | ||||||
| * | | Drop branches for sys.version_info < (3, 4) | Takeshi KOMIYA | 2018-09-22 | 1 | -103/+1 | |
| | | |