Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Fix #9364: autodoc: 1-element tuple on the defarg is wrongly rendered | Takeshi KOMIYA | 2021-06-21 | 1 | -1/+2 |
| | |||||
* | 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 | ||||
* | pycode: ast.unparse() construct number literals using source code | Takeshi KOMIYA | 2020-10-05 | 1 | -5/+9 |
| | | | | | | | | | | | | | Developers can write number literals in several ways. For example, decimal (1234), hexadecimal (0x1234), octal decimal (0o1234) and so on. But, AST module don't mind how the numbers written in the code. As a result, ast.unparse() could not reproduce the original form of number literals. This allows to construct number literals as possible using original source code. Note: This is only available in Python 3.8+. | ||||
* | Fix #7964: autodoc: Tuple in default value is wrongly rendered | Takeshi KOMIYA | 2020-10-03 | 1 | -1/+1 |
| | | | | This implements tuple literal support to sphinx.pycode.ast.unparse(). | ||||
* | Fix #7461: autodoc: empty tuple in type annotation is not shown correctly | Takeshi KOMIYA | 2020-04-12 | 1 | -0/+1 |
| | |||||
* | Fix #7304: pycode: Support operators (BinOp, BoolOp and UnaryOp) | Takeshi KOMIYA | 2020-03-14 | 1 | -0/+22 |
| | |||||
* | py domain: Support lambda functions in function signature | Takeshi KOMIYA | 2020-02-16 | 1 | -1/+11 |
| | |||||
* | Add sphinx.pycode.ast.parse() and unparse() | Takeshi KOMIYA | 2020-01-13 | 1 | -0/+40 |