summaryrefslogtreecommitdiff
path: root/tests/test_pycode_parser.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove traces of Python 2 and 3.5 (#10560)Adam Turner2022-06-161-16/+8
|
* Collapse single line docstringsAdam Turner2022-02-201-2/+1
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Fix module docstring indentationAdam Turner2022-02-201-2/+2
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* overriddenChristian Clauss2021-09-081-1/+1
|
* Fix typos discovered by codespellChristian Clauss2021-09-081-1/+1
|
* Merge branch '3.x'Takeshi KOMIYA2021-01-011-1/+1
|\
| * A happy new year!Takeshi KOMIYA2021-01-011-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
* | Fix flake8 violationsTakeshi KOMIYA2020-11-211-4/+0
| |
* | Drop code for supporting py35Takeshi KOMIYA2020-11-061-2/+1
|/
* pycode: Detect @overload decoratorsTakeshi KOMIYA2020-05-311-0/+78
|
* pycode: Detect @final decoratorsTakeshi KOMIYA2020-04-281-0/+78
|
* autodoc: Support type_comment styled type annotation for variablesTakeshi KOMIYA2020-02-031-3/+7
|
* pycode: Support type annotations for variablesTakeshi KOMIYA2020-02-031-0/+3
|
* Fix autodoc: autodoc_member_order_does not refer order of imports (refs: #6574)Takeshi KOMIYA2019-07-131-0/+16
|
* Fix #6451: autodoc: generates docs for "optional import"ed modules as variablesTakeshi KOMIYA2019-06-081-0/+15
|
* pycode: Support "async" syntaxTakeshi KOMIYA2019-04-231-0/+15
|
* Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-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.
* refactoring: Drop PY2 and PY3 flagsTakeshi KOMIYA2018-09-221-2/+0
|
* Fix #5019: autodoc: crashed by Form Feed CharacterTakeshi KOMIYA2018-06-101-0/+9
|
* Fix #4914: autodoc: Parsing error when using dataclasses without default valuesTakeshi KOMIYA2018-05-211-2/+4
|
* Fix #4812: autodoc ignores type annotated variablesTakeshi KOMIYA2018-04-081-0/+14
|
* Merge pull request #4157 from tk0miya/4156_parse_class_commentTakeshi KOMIYA2017-10-211-0/+12
|\ | | | | Fix #4156: failed to parse class comment
| * Fix #4156: failed to parse class commentTakeshi KOMIYA2017-10-191-0/+12
| |
* | Support more complex starred asssignment caseTakeshi KOMIYA2017-10-191-1/+6
| |
* | Fix #4158: pycode.parser failed to parse starred assignmentTakeshi KOMIYA2017-10-181-0/+15
|/
* pycode tests for multiple assignment via tuple/listPeter Cock2017-10-131-2/+10
|
* pycode: Add new parser!Takeshi KOMIYA2017-07-261-0/+261