Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Correct type annotation to remove 'type: ignore' comment | Jon Dufresne | 2018-11-12 | 1 | -2/+2 | |
|/ / | ||||||
* | | Use super() to call parent class's method | Jon Dufresne | 2018-11-11 | 1 | -3/+3 | |
| | | ||||||
* | | Merge branch '1.8' | Takeshi KOMIYA | 2018-10-16 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Fix mypy violations | Takeshi KOMIYA | 2018-10-16 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch 'master' into HEAD | Takeshi KOMIYA | 2018-09-22 | 2 | -12/+6 | |
|\ \ | ||||||
| * \ | Merge branch 'master' into open | Takeshi KOMIYA | 2018-09-22 | 2 | -10/+5 | |
| |\ \ | ||||||
| | * | | refactoring: Drop PY2 and PY3 flags | Takeshi KOMIYA | 2018-09-22 | 2 | -10/+5 | |
| | | | | ||||||
| | * | | Merge branch '1.8' | Takeshi KOMIYA | 2018-09-20 | 1 | -1/+1 | |
| | |\ \ | | | |/ | ||||||
| | | * | Fix mypy violations | Takeshi KOMIYA | 2018-09-18 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | Prefer builtin open() over io.open() and codecs.open() | Jon Dufresne | 2018-09-11 | 1 | -3/+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 | 2 | -3/+3 | |
|/ / | | | | | | | | | In Python 3, all classes are new-style classes. The object in the definition is redundant and unnecessary. | |||||
* | | Drop APIs deprecated in 2.0 | Takeshi KOMIYA | 2018-09-03 | 1 | -2/+0 | |
|/ | ||||||
* | Fix mypy violations | Takeshi KOMIYA | 2018-07-15 | 1 | -1/+1 | |
| | ||||||
* | Merge branch '1.7' | Takeshi KOMIYA | 2018-06-09 | 1 | -2/+8 | |
|\ | ||||||
| * | Fix sphinx.testing uses deprecated pytest API; Node.get_marker(name) | Takeshi KOMIYA | 2018-06-07 | 1 | -2/+8 | |
| | | ||||||
* | | Fix make_app() fixture fails to rollback registered roles on creating ↵ | Takeshi KOMIYA | 2018-05-17 | 1 | -1/+1 | |
| | | | | | | | | multiple apps | |||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-04-09 | 1 | -1/+2 | |
|\ \ | |/ | ||||||
| * | Fix #4783: Sphinx crashed when drives of srcdir and outdir are different | Takeshi KOMIYA | 2018-04-02 | 1 | -1/+2 | |
| | | ||||||
* | | Drop typing.TYPE_CHECKING | Takeshi KOMIYA | 2018-03-26 | 1 | -2/+2 | |
| | | ||||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-03-18 | 2 | -4/+5 | |
|\ \ | |/ | ||||||
| * | Revert "Use typing.TYPE_CHECKING for typehints" | Takeshi KOMIYA | 2018-03-13 | 2 | -4/+2 | |
| | | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4. | |||||
* | | Add testcases | Takeshi KOMIYA | 2018-02-25 | 1 | -1/+2 | |
| | | ||||||
* | | Use typing.TYPE_CHECKING | Takeshi KOMIYA | 2018-02-19 | 1 | -2/+2 | |
| | | ||||||
* | | Merge branch '1.7' | Takeshi KOMIYA | 2018-02-18 | 2 | -4/+4 | |
|\ \ | |/ | ||||||
| * | Use typing.TYPE_CHECKING for typehints | Takeshi KOMIYA | 2018-02-14 | 2 | -2/+4 | |
| | | ||||||
* | | Update type annotations | Takeshi KOMIYA | 2018-02-04 | 3 | -10/+59 | |
| | | ||||||
* | | Merge branch '1.7-release' | Takeshi KOMIYA | 2018-01-31 | 2 | -4/+2 | |
|\ \ | |/ | ||||||
| * | Use flake8-import-order | Takeshi KOMIYA | 2018-01-28 | 2 | -4/+2 | |
| | | ||||||
* | | app: Centralize directory validation | Stephen Finucane | 2018-01-20 | 1 | -1/+3 | |
|/ | | | | | | | | | | 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> | |||||
* | Merge branch 'happy_new_year' into master | Takeshi KOMIYA | 2018-01-01 | 4 | -4/+4 | |
|\ | ||||||
| * | A happy new year! | Takeshi KOMIYA | 2018-01-01 | 4 | -4/+4 | |
| | | ||||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2017-10-23 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Fix flake8 and style-check violations | Takeshi KOMIYA | 2017-10-23 | 1 | -1/+1 | |
| | | ||||||
| * | Fix mypy violations (for mypy-0.520) | Takeshi KOMIYA | 2017-07-15 | 1 | -1/+1 | |
| | | ||||||
* | | Fix flake8 violation | Takeshi KOMIYA | 2017-05-17 | 1 | -2/+0 | |
| | | ||||||
* | | Merge branch 'stable' | Takeshi KOMIYA | 2017-05-16 | 1 | -160/+0 | |
|/ | ||||||
* | refs #3458: add sphinx.testing that are moved from /tests directory. | shimizukawa | 2017-05-14 | 4 | -0/+807 | |