summaryrefslogtreecommitdiff
path: root/sphinx/ext/viewcode.py
Commit message (Collapse)AuthorAgeFilesLines
* viewcode: Fix viewcode raises NoUri error on resolving phase except on HTML ↵Takeshi KOMIYA2020-05-171-2/+4
| | | | builders
* Merge branch '2.x' into 3.xTakeshi KOMIYA2020-02-181-1/+1
|\
| * Fix #7137: viewcode: Avoid to crash when non-python code givenTakeshi KOMIYA2020-02-181-1/+1
| |
* | refactor: Update type annotations in sphinx.ext.*Takeshi KOMIYA2020-02-161-3/+5
| |
* | Merge branch '2.0'Takeshi KOMIYA2020-01-011-1/+1
|\ \ | |/
| * A happy new year!Takeshi KOMIYA2020-01-011-1/+1
| |
* | Merge branch '2.0'Takeshi KOMIYA2019-07-061-18/+12
|\ \ | |/
| * Migrate to py3 style type annotation: sphinx.ext.viewcodeTakeshi KOMIYA2019-07-041-20/+14
| |
| * Show deprecation warning for viewcode_importTakeshi KOMIYA2019-03-301-0/+1
| |
* | Drop features and APIs deprecated in 1.8Takeshi KOMIYA2019-03-301-10/+0
|/
* Give "nonl=True" value to logging.info() instead of intTakeshi KOMIYA2019-01-191-3/+0
|
* Make info messages more translatableTakeshi KOMIYA2019-01-091-2/+2
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Merge pull request #5805 from jdufresne/has-tag-strTakeshi KOMIYA2018-12-171-6/+1
|\ \ | | | | | | Remove unnecessary bytes/str type check from doctree_read()
| * | Remove unnecessary bytes/str type check from doctree_read()Jon Dufresne2018-12-161-6/+1
| | | | | | | | | | | | ModuleAnalyzer.code is always type str. Decoding is unnecessary.
* | | 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.
* | Replace all "unicode" type by "str"Takeshi KOMIYA2018-12-151-7/+6
| |
* | Fix annotations (minor fixes)Takeshi KOMIYA2018-12-031-6/+4
| |
* | Fix annotaions for extensionsTakeshi KOMIYA2018-11-281-1/+3
| |
* | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| |
* | Merge branch '1.8'Takeshi KOMIYA2018-11-011-1/+1
|\ \ | |/
| * Fix #5471: Show appropriate warning for deprecated APIsTakeshi KOMIYA2018-10-171-1/+1
| |
* | Remove use of six.iteritems()Jon Dufresne2018-09-111-3/+3
|/ | | | In Python 3, dict.items() is always an iterator.
* Plugins can resolve imported members for viewcodeAshley Whetter2018-08-131-1/+7
|
* Rename viewcode_import to viewcode_follow_imported_members (refs: #4035)Takeshi KOMIYA2018-05-071-2/+14
|
* Plugins can find source code for viewcodeAshley Whetter2018-04-241-11/+21
| | | | Fixes #4035
* Merge branch '1.7'Takeshi KOMIYA2018-03-181-2/+2
|\
| * Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA2018-03-131-2/+2
| | | | | | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
* | Merge commit '6694981dd6939ab876b27d4e20a8128561c307ac'Takeshi KOMIYA2018-03-151-1/+1
|\ \ | |/
| * Fix #4701: viewcode: Misplaced ``<div>`` in viewcode html outputTakeshi KOMIYA2018-03-051-1/+1
| |
* | Merge branch '1.7'Takeshi KOMIYA2018-02-181-2/+2
|\ \ | |/
| * Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA2018-02-141-2/+2
| |
* | Merge branch '1.7-release'Takeshi KOMIYA2018-01-311-2/+1
|\ \ | |/
| * Use flake8-import-orderTakeshi KOMIYA2018-01-281-2/+1
| |
* | Close #4460: extensions should return the version of data structure as metadataTakeshi KOMIYA2018-01-251-1/+5
|/
* Merge branch 'stable'Takeshi KOMIYA2018-01-081-3/+3
|\
| * Fixes bug when evaluating entry to boolGuillaume Gay2018-01-081-3/+3
| | | | | | | | | | | | | | | | | | | | As reported here: https://github.com/rtfd/readthedocs.org/issues/3411 sphinx sometimes fails with the error: ```python File "/home/docs/checkouts/readthedocs.org/user_builds/drf-yasg/envs/latest/lib/python3.5/site-packages/sphinx/ext/viewcode.py", line 74, in has_tag if entry is None or entry[0] != code: TypeError: 'bool' object is not subscriptable ``` This is not critical as whipping the build or even just running it again fixes it, but the error is confusing... I believe switching the two if statement above should prevent this from happening.
* | Merge branch 'happy_new_year' into masterTakeshi KOMIYA2018-01-011-1/+1
|\ \ | |/
| * A happy new year!Takeshi KOMIYA2018-01-011-1/+1
| |
* | Reformat to avoid overly long line flake8 E501Peter Cock2017-09-201-4/+5
| |
* | Sort modules for highlightingPeter Cock2017-09-121-1/+1
|/ | | | | | | | | With this change the output will be in a predictable order on older versions of Python (where the dictionary is not sorted by default). This is helpful for debugging and interpreting the progress from the terminal.
* please see #3700Iacchus Mercurius2017-05-071-1/+1
|
* Merge branch 'stable'Takeshi KOMIYA2017-03-261-1/+1
|\
| * Year++Takeshi KOMIYA2017-03-261-1/+1
| |
* | Upgrade to mypy-0.5Takeshi KOMIYA2017-03-031-1/+1
| |
* | Sphinx.status_iterator() is now deprecatedTakeshi KOMIYA2017-01-071-5/+5
| |
* | Update by reviewTakeshi KOMIYA2017-01-041-2/+1
| |
* | Use loggersTakeshi KOMIYA2017-01-021-1/+1
| |
* | Use sphinx.util.logging instead app.info(), verbose(), debug() and debug2()Takeshi KOMIYA2017-01-021-5/+7
| |