| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | js nodes, nodes.Node -> Node | Jakob Lykke Andersen | 2021-10-03 | 1 | -2/+2 |
| | | |||||
| * | js nodes, update CHANGES and rename variable | Jakob Lykke Andersen | 2021-10-03 | 1 | -5/+5 |
| | | |||||
| * | js/py nodes, update arglist rendering | Jakob Lykke Andersen | 2021-10-03 | 1 | -1/+2 |
| | | |||||
| * | js nodes, update name rendering | Jakob Lykke Andersen | 2021-10-03 | 1 | -1/+1 |
| | | |||||
| * | js nodes, update prefix rendering | Jakob Lykke Andersen | 2021-10-03 | 1 | -2/+11 |
| | | |||||
| * | js nodes, update display_prefix | Jakob Lykke Andersen | 2021-10-03 | 1 | -7/+12 |
| | | |||||
| * | py nodes, Constant None | Jakob Lykke Andersen | 2021-10-02 | 1 | -0/+2 |
| | | |||||
| * | py nodes, PyObject anno | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+9 |
| | | |||||
| * | py nodes, get_signature_prefix cleanup | Jakob Lykke Andersen | 2021-10-02 | 1 | -4/+1 |
| | | |||||
| * | py nodes, PyProperty get_signature_prefix | Jakob Lykke Andersen | 2021-10-02 | 1 | -6/+9 |
| | | |||||
| * | py nodes, PyMethod get_signature_prefix | Jakob Lykke Andersen | 2021-10-02 | 1 | -13/+15 |
| | | |||||
| * | py nodes, PyClassLike, get_signature_prefix | Jakob Lykke Andersen | 2021-10-02 | 1 | -3/+4 |
| | | |||||
| * | py nodes, PyFunction get_signature_prefix | Jakob Lykke Andersen | 2021-10-02 | 1 | -3/+4 |
| | | |||||
| * | py nodes, prep for get_signature_prefix change | Jakob Lykke Andersen | 2021-10-02 | 1 | -3/+6 |
| | | |||||
| * | py nodes, PyProperty | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+4 |
| | | |||||
| * | py nodes, PyAttribute value | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+5 |
| | | |||||
| * | py nodes, PyAttribute type | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+4 |
| | | |||||
| * | py nodes, PyVariable value | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+5 |
| | | |||||
| * | py nodes, PyVariable type | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+3 |
| | | |||||
| * | py nodes, arglist | Jakob Lykke Andersen | 2021-10-02 | 1 | -3/+3 |
| | | |||||
| * | py nodes, Tuple | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+3 |
| | | |||||
| * | py nodes, List | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+3 |
| | | |||||
| * | py nodes, BitOr | Jakob Lykke Andersen | 2021-10-02 | 1 | -1/+3 |
| | | |||||
| * | C++, add retval info field to cpp:function | Jakob Lykke Andersen | 2021-10-01 | 1 | -9/+15 |
| | | |||||
| * | C, fix retvals info-field to be collapsible | Jakob Lykke Andersen | 2021-10-01 | 1 | -1/+2 |
| | | |||||
| * | C, move info-fields from all objects to just function and macro | Jakob Lykke Andersen | 2021-10-01 | 1 | -12/+17 |
| | | |||||
| * | C, add support for return value list | Gerard Marull-Paretas | 2021-10-01 | 1 | -1/+3 |
| | | | | | | | | Add support for a new doc field type that allows to display a list of return values. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no> | ||||
| * | Fix typos discovered by codespell | Christian Clauss | 2021-09-08 | 3 | -10/+10 |
| | | |||||
| * | Fix #9576: py domain: Literal typehint was converted to a cross reference | Takeshi KOMIYA | 2021-09-03 | 1 | -2/+10 |
| | | | | | | The content of Literal typehint should not be converted to cross references. | ||||
| * | Fix #9585: py:property directive does not create a hyperlink for types | Takeshi KOMIYA | 2021-08-31 | 1 | -1/+2 |
| | | |||||
| * | C++, fix parsing of defaulted fp function params | Jakob Lykke Andersen | 2021-08-20 | 1 | -8/+2 |
| | | |||||
| * | C, C++, parse <width> <complex/imaginary> | Jakob Lykke Andersen | 2021-08-20 | 2 | -10/+10 |
| | | |||||
| * | C++, update fundamental type handling a la in C | Jakob Lykke Andersen | 2021-08-20 | 1 | -44/+58 |
| | | |||||
| * | C, add short int, and treat spaced types properly | Jakob Lykke Andersen | 2021-08-20 | 1 | -5/+11 |
| | | |||||
| * | C, add fract and accum | Jakob Lykke Andersen | 2021-08-20 | 1 | -1/+1 |
| | | |||||
| * | C, update fundamental types, including GNU exts | Jakob Lykke Andersen | 2021-08-20 | 1 | -38/+32 |
| | | | | | Fixes sphinx-doc/sphinx#9535 | ||||
| * | Fix #9481: autosummary: some warnings contain non-existing filenames | Takeshi KOMIYA | 2021-07-25 | 2 | -20/+20 |
| | | | | | | | | | | | | | | | `SphinxDirective.get_source_info()` returns the pair of fullpath of source and current line number. But our logging module expects one of these: * A string consists of fullpath and current line number * A pair of docname and current line number To show correct location for warnings, this adds `get_location()` method that returns the former one. Note: This also modifies C/C++ domains. | ||||
| * | Cloase #9445: :py:property: directive now supports :classmethod: option | Takeshi KOMIYA | 2021-07-17 | 1 | -2/+6 |
| | | | | | | Since python 3.9, `classmethod` starts to support creating a "class property". This allows to describe it. | ||||
| * | Merge branch '4.x' into 9427 | Takeshi KOMIYA | 2021-07-11 | 9 | -109/+249 |
| |\ | |||||
| | * | Fix typo | Eisuke Kawashima | 2021-07-08 | 2 | -6/+6 |
| | | | |||||
| | * | Merge branch '4.0.x' into 4.x | Takeshi KOMIYA | 2021-06-30 | 1 | -4/+22 |
| | |\ | |||||
| | * | | C++, fix name mangling of literals with digit seps | Jakob Lykke Andersen | 2021-06-28 | 1 | -1/+1 |
| | | | | |||||
| | * | | C++, update env version due to recent changes | Jakob Lykke Andersen | 2021-06-28 | 1 | -1/+1 |
| | | | | |||||
| | * | | C++, support constrains in placeholders | Jakob Lykke Andersen | 2021-06-24 | 1 | -2/+30 |
| | | | | |||||
| | * | | C++, support explicit(<expr>) specifier | Jakob Lykke Andersen | 2021-06-24 | 1 | -14/+50 |
| | | | | |||||
| | * | | C++, support char8_t | Jakob Lykke Andersen | 2021-06-24 | 1 | -4/+5 |
| | | | | |||||
| | * | | C++, support consteval and constinit | Jakob Lykke Andersen | 2021-06-24 | 1 | -24/+46 |
| | | | | |||||
| | * | | C++, support inline variables | Jakob Lykke Andersen | 2021-06-24 | 1 | -4/+5 |
| | | | | |||||
| | * | | Merge branch '4.0.x' into 4.x | jfbu | 2021-06-14 | 1 | -4/+12 |
| | |\ \ | |||||
| | * | | | js, use func role for exception field | Jakob Lykke Andersen | 2021-06-03 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | The err role doesn't exist and the rest are all equivalent. | ||||
