Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |||||
* | Merge pull request #8530 from jakobandersen/bnavigator-fix-AliasNode-copy | Jakob Lykke Andersen | 2020-12-12 | 1 | -2/+2 | |
|\ | | | | | C, fix AliasNode.copy | |||||
| * | C++, typing on AliasNode.copy | Jakob Lykke Andersen | 2020-12-12 | 1 | -2/+2 | |
| | | ||||||
* | | refactor with pyupgrade | Takeshi KOMIYA | 2020-11-25 | 1 | -2/+1 | |
| | | | | | | | | | | | | Run `pyupgrade --py3-only --keep-percent-format` to refine our code. Note: --keep-percent-format is required to keep translations available. | |||||
* | | Sort imports with isort | François Freitag | 2020-11-11 | 1 | -13/+9 | |
|/ | | | | | | | | | | | | 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. | |||||
* | C, C++, improve warnings on duplicates | Jakob Lykke Andersen | 2020-10-24 | 1 | -36/+49 | |
| | ||||||
* | C, fix links to function parameters | Jakob Lykke Andersen | 2020-10-13 | 1 | -1/+1 | |
| | ||||||
* | C++, properly reject functions as duplicates | Jakob Lykke Andersen | 2020-10-03 | 1 | -0/+5 | |
| | | | | Fixes sphinx-doc/sphinx#8270 | |||||
* | C++, improve warning and debug messages | Jakob Lykke Andersen | 2020-10-03 | 1 | -7/+13 | |
| | ||||||
* | domains: c: cpp: fix typos | Fabio Utzig | 2020-09-09 | 1 | -1/+1 | |
| | | | | Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no> | |||||
* | C and C++, parsing function attributes | Jakob Lykke Andersen | 2020-08-13 | 1 | -2/+17 | |
| | | | | Fixes sphinx-doc/sphinx#8114 | |||||
* | C++, fix template template parameter parsing | Jakob Lykke Andersen | 2020-08-13 | 1 | -0/+1 | |
| | | | | https://github.com/sphinx-doc/sphinx/pull/8037#issuecomment-673511490 | |||||
* | C++, fix non-type template parameter parsing | Jakob Lykke Andersen | 2020-08-02 | 1 | -52/+74 | |
| | | | | Fixes sphinx-doc/sphinx#7944 | |||||
* | fix typo | Tetsuo Koyama | 2020-07-19 | 1 | -1/+1 | |
| | ||||||
* | Merge branch '3.1.x' into c_optimization | Jakob Lykke Andersen | 2020-07-15 | 1 | -0/+10 | |
|\ | ||||||
| * | C, don't deepcopy as deep on handling enumerators | Jakob Lykke Andersen | 2020-07-14 | 1 | -0/+10 | |
| | | ||||||
* | | Add :noindexentry: option | Jakob Lykke Andersen | 2020-07-04 | 1 | -1/+2 | |
| | | | | | | | | Fixes sphinx-doc/sphinx#7052 | |||||
* | | C, C++: remove noindex option | Jakob Lykke Andersen | 2020-06-30 | 1 | -11/+10 | |
| | | | | | | | | | | The option did nothing. Improve error messages on duplicates. | |||||
* | | Merge pull request #7832 from cool-RR/2020-06-11-raise-from | Takeshi KOMIYA | 2020-06-29 | 1 | -13/+14 | |
|\ \ | | | | | | | Fix exception causes all over the codebase | |||||
| * | | Fix exception causes all over the codebase | Ram Rachum | 2020-06-14 | 1 | -13/+14 | |
| |/ | ||||||
* | | C,C++: support parameterized GNU style attributes | Jakob Lykke Andersen | 2020-06-20 | 1 | -2/+3 | |
|/ | | | | Fixes sphinx-doc/sphinx#7853 | |||||
* | C++, parse (trailing) requires clauses | Jakob Lykke Andersen | 2020-06-02 | 1 | -13/+123 | |
| | | | | Fixes sphinx-doc/sphinx#7295 | |||||
* | Merge pull request #7769 from jakobandersen/c_cpp_display_string_ops | Jakob Lykke Andersen | 2020-06-02 | 1 | -4/+4 | |
|\ | | | | | C and C++, don't crash during stringification | |||||
| * | C and C++, don't crash during stringification | Jakob Lykke Andersen | 2020-06-02 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | Specifically when generating display strings for unary expressions and fold expressions. Fixes sphinx-doc/sphinx#7763 | |||||
* | | C++, fix rendering of rooted nested names | Jakob Lykke Andersen | 2020-05-16 | 1 | -1/+7 | |
| | | | | | | | | Also, test doctree generation via astext(). | |||||
* | | C++, add debug config variables | Jakob Lykke Andersen | 2020-05-14 | 1 | -3/+12 | |
| | | ||||||
* | | C++, parse trailing return types | Jakob Lykke Andersen | 2020-05-01 | 1 | -8/+55 | |
| | | ||||||
* | | C++, parse expressions with user-defined literals | Jakob Lykke Andersen | 2020-05-01 | 1 | -12/+68 | |
| | | | | | | | | Fixes sphinx-doc/sphinx#7294 | |||||
* | | Merge pull request #7485 from jbab/cpp-noexcept | Jakob Lykke Andersen | 2020-04-25 | 1 | -12/+34 | |
|\ \ | | | | | | | C++, add support for parameterized noexcept specifier in function dec… | |||||
| * | | C++, add support for parameterized noexcept specifier in function declarations | Jan Babst | 2020-04-24 | 1 | -12/+34 | |
| | | | ||||||
* | | | C++, semicolon, move it entirely to ASTDeclaration | Jakob Lykke Andersen | 2020-04-24 | 1 | -12/+6 | |
| | | | ||||||
* | | | C++ domain: Add support for semicolon in declarations | Jan Babst | 2020-04-24 | 1 | -6/+21 | |
| | | | ||||||
* | | | Merge branch '3.0.x' into 3.x | Takeshi KOMIYA | 2020-04-18 | 1 | -4/+7 | |
|\ \ \ | |/ / |/| / | |/ | ||||||
| * | C++, fix spacing issue in east-const notation | Jan Babst | 2020-04-17 | 1 | -4/+7 | |
| | | ||||||
* | | Merge branch '3.0.x' into 3.x | Takeshi KOMIYA | 2020-04-13 | 1 | -172/+10 | |
|\ \ | |/ | ||||||
| * | C, parse attributes | Jakob Lykke Andersen | 2020-04-13 | 1 | -172/+10 | |
| | | ||||||
* | | Merge branch '3.0.x' into 3.x | Takeshi KOMIYA | 2020-04-11 | 1 | -9/+72 | |
|\ \ | |/ | ||||||
| * | C++, fix merging overloaded functions in parallel builds. | Jakob Lykke Andersen | 2020-04-08 | 1 | -9/+72 | |
| | | ||||||
* | | refactor: Update type annotation for cpp domain | Takeshi KOMIYA | 2020-03-30 | 1 | -13/+13 | |
|/ | ||||||
* | C, C++, do not recurse in anon symbols on addition | Jakob Lykke Andersen | 2020-03-25 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #7380 from jakobandersen/cpp_comma_operator | Jakob Lykke Andersen | 2020-03-25 | 1 | -94/+166 | |
|\ | | | | | C++, comma operator, pack expansion, error messages | |||||
| * | C++, support pack expansion in template argument lists | Jakob Lykke Andersen | 2020-03-25 | 1 | -9/+41 | |
| | | ||||||
| * | C++, support comma operator in expressions | Jakob Lykke Andersen | 2020-03-25 | 1 | -48/+90 | |
| | | ||||||
| * | C++, improve error messages for template parameter/argument lists | Jakob Lykke Andersen | 2020-03-24 | 1 | -37/+35 | |
| | | ||||||
* | | C, C++, improve error messages. | Jakob Lykke Andersen | 2020-03-24 | 1 | -11/+16 | |
|/ | ||||||
* | C++, support alternate spellings of operators | Jakob Lykke Andersen | 2020-03-24 | 1 | -28/+48 | |
| | | | | Fixes sphinx-doc/sphinx#7367 | |||||
* | C++, fix minor space issues in declarators | Jakob Lykke Andersen | 2020-03-18 | 1 | -10/+10 | |
| | ||||||
* | C++, add type annotations | Jakob Lykke Andersen | 2020-03-17 | 1 | -1206/+1377 | |
| | ||||||
* | Fix flake and mypy errors | Jakob Lykke Andersen | 2020-03-17 | 1 | -1/+1 | |
| | ||||||
* | Use logging.suppress_logging() | Jakob Lykke Andersen | 2020-03-17 | 1 | -23/+11 | |
| |