summaryrefslogtreecommitdiff
path: root/tests/test_autodoc.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * | test: Update testcase for autoclass_contentTakeshi KOMIYA2019-06-031-88/+0
| | |
| * | test: Update testcase for autodoc_inherit_docstringsTakeshi KOMIYA2019-06-031-9/+0
| | |
| * | test: Move class inheritance samples into target.inheritance moduleTakeshi KOMIYA2019-06-031-21/+20
| | |
| * | test: Move testcases for autodoc events to test_ext_autodoc_eventsTakeshi KOMIYA2019-06-031-68/+1
| | |
| * | test: Move testcases for autodoc configurations to test_ext_autodoc_configsTakeshi KOMIYA2019-06-031-375/+1
| | |
| * | test: Update testcase for autodoc-process-docstringTakeshi KOMIYA2019-06-031-22/+15
| | |
| * | test: Update testcase for cut_lines()Takeshi KOMIYA2019-06-031-10/+14
| | |
| * | test: Update testcase for between()Takeshi KOMIYA2019-06-031-23/+29
| | |
| * | test: Move descriptor example to independent fileTakeshi KOMIYA2019-06-031-26/+23
| | |
| * | Migrate to py3 style type annotation: sphinx.utilTakeshi KOMIYA2019-06-021-3/+4
| |/
| * Fix #1063: autodoc: automodule directive handles undocumented module level ↵Takeshi KOMIYA2019-06-011-0/+24
| | | | | | | | variables
| * Close #6361: autodoc: Add autodoc_typehints to suppress typehints from signatureTakeshi KOMIYA2019-05-261-0/+52
| |
| * Close #6325: autodoc: Support attributes in __slots__Takeshi KOMIYA2019-05-221-0/+40
| |
| * Close #744: autodoc: Support abstractmethodTakeshi KOMIYA2019-05-151-0/+49
| |
| * Merge branch '2.0' into refactor_py_domain3Takeshi KOMIYA2019-05-121-1/+6
| |\
| | * Fix #6165: autodoc: ``tab_width`` setting of docutils has been ignoredTakeshi KOMIYA2019-04-251-1/+6
| | |
| * | autodoc: Add PropertyDocumenter to detect propertiesTakeshi KOMIYA2019-05-121-10/+15
| |/
| * Close #4777: autodoc: Support coroutineTakeshi KOMIYA2019-04-231-0/+10
| |
| * Merge branch '2.0' into refactor_py_domain2Takeshi KOMIYA2019-04-231-0/+41
| |\
| | * Merge pull request #6289 from alsrgv/add_imported_members_directiveTakeshi KOMIYA2019-04-151-0/+11
| | |\ | | | | | | | | Add imported-members to the directive whitelist
| | | * Address feedbackAlex Sergeev2019-04-131-0/+11
| | | |
| | * | Address feedbackAlex Sergeev2019-04-131-1/+17
| | | |
| | * | Add support for bound methods posing as functions in the moduleAlex Sergeev2019-04-131-0/+14
| | |/
| * | autodoc: Use new options for py:method directiveTakeshi KOMIYA2019-04-131-18/+46
| |/
* | Merge branch 'master' into masterBrendt Wohlberg2019-02-281-98/+146
|\ \ | |/
| * refactor: test_autodocTakeshi KOMIYA2019-02-271-34/+39
| |
| * Merge branch '1.8'Takeshi KOMIYA2019-02-171-0/+13
| |\
| | * Fix #6047: autodoc: ``autofunction`` emits a warning for method objectsTakeshi KOMIYA2019-02-171-0/+13
| | |
| * | Closes #1148: autodoc: Add autodecorator directive for decoratorsTakeshi KOMIYA2019-02-151-0/+23
| | |
| * | Merge branch 'master' into 5459_autodoc_default_options_accepts_TrueTakeshi KOMIYA2019-02-111-1/+7
| |\ \
| | * | Add testcase for mocked objects in autodocTakeshi KOMIYA2019-02-111-1/+7
| | | |
| * | | Closes #5459: autodoc: autodoc_default_options accepts True as a valueTakeshi KOMIYA2019-02-111-0/+6
| |/ /
| * | Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
| |\ \ | | |/
| | * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| | |
| * | 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.
| * | refactor: Remove u-prefix from stringsTakeshi KOMIYA2018-12-161-54/+54
| | |
| * | Remove a hack for py2 from testcodeTakeshi KOMIYA2018-12-151-10/+4
| | |
| * | Merge branch '1.8'Takeshi KOMIYA2018-11-221-0/+2
| |\ \ | | |/
| | * test: Filter warnings on testingTakeshi KOMIYA2018-11-121-0/+2
| | |
* | | Added test for correct nested class name when show-inheritance enabledBrendt Wohlberg2018-12-021-0/+13
|/ /
* | Deprecate and drop internal use of force_decode()Jon Dufresne2018-11-131-2/+2
| | | | | | | | | | | | | | | | | | In the Python 3 only code base, this function is no longer necessary. The type of values is well understood and deliberate. Code should avoid arbitrary mixing of bytes & str. By removing force_decode() calls from docstring values, can deprecate the now unused 'encoding' arguments to various autodoc methods.
* | test: Replace call_autodoc() by do_autodoc()Takeshi KOMIYA2018-11-111-12/+3
| |
* | test: Move autodoc_missing_imports to test-ext-autodocTakeshi KOMIYA2018-10-171-7/+24
| |
* | tests: Ensure 'member-only' `autodoc_default_options` is respectedEric N. Vander Weele2018-10-141-0/+23
| | | | | | | | | | When specifying the 'member-only' option to `autodoc_default_options`, ensure it is respected.
* | Merge branch 'master' into HEADTakeshi KOMIYA2018-09-221-34/+57
|\ \
| * | refactoring: Drop PY2 and PY3 flagsTakeshi KOMIYA2018-09-221-17/+6
| | |
| * | test: Merge py35/test_autodoc_py35.py to test_autodoc.pyTakeshi KOMIYA2018-09-221-0/+18
| | |
| * | Drop branches for sys.version_info < (3, 4)Takeshi KOMIYA2018-09-221-2/+0
| | |
| * | Merge branch '1.8'Takeshi KOMIYA2018-09-201-15/+33
| |\ \ | | |/
| | * Merge branch '1.8' into 5431_warnings_for_callableTakeshi KOMIYA2018-09-181-15/+20
| | |\