Commit Graph

11600 Commits

Author SHA1 Message Date
Takeshi KOMIYA
91650d89c9 Fix #5291: autodoc crashed by ForwardRef types 2018-08-15 21:30:49 +09:00
Takeshi KOMIYA
8d0170ecf1
Merge pull request #5300 from tk0miya/fix_autodoc_optional
Fix autodoc optional
2018-08-15 21:30:22 +09:00
Jakob Lykke Andersen
6433e08069 C++, add parsing of delete expressions. 2018-08-15 10:08:31 +02:00
Takeshi KOMIYA
cc3de81deb Fix mypy annotations 2018-08-15 11:39:54 +09:00
Takeshi KOMIYA
955c3d388b test Signature annotations in py34 too 2018-08-15 01:22:52 +09:00
Takeshi KOMIYA
5a0f0bdc61 refactor: format_annotation() 2018-08-15 01:22:52 +09:00
Takeshi KOMIYA
e26dc81272 Fix autodoc: Optional types are wrongly rendered 2018-08-15 01:22:52 +09:00
Takeshi KOMIYA
bce956d357
Merge pull request #5264 from tk0miya/mendex_for_windows
latex: Invoke mendex from perl (for Windows)
2018-08-14 22:48:35 +09:00
Timotheus Kampik
e622c11185
Merge pull request #5299 from KengoTODA/add-example
add a new book "SpotBugs manual" to EXAMPLES
2018-08-14 10:50:38 +02:00
Kengo TODA
0680805cc3 add a new book "SpotBugs manual" to EXAMPLES 2018-08-14 14:30:22 +08:00
Ashley Whetter
97164faec3 Plugins can resolve imported members for viewcode 2018-08-13 17:07:50 -07:00
Timotheus Kampik
1878a52837 Update karma dependency for JS tests 2018-08-13 23:18:42 +02:00
Takeshi KOMIYA
f77216c5a6
Merge pull request #5261 from tk0miya/5246_singlehtml_sidebars
Fix #5246: Add :confval:`singlehtml_sidebars` to configure sidebars for singlehtml
2018-08-14 00:59:55 +09:00
Takeshi KOMIYA
e5c5d37301
Merge pull request #5283 from cclauss/patch-1
Appveyor: Test in Python 3.7 instead of Python 3.6
2018-08-13 22:06:23 +09:00
Timotheus Kampik
3fee3648a8
Merge pull request #5292 from vividtone/add-redmine-primer-book-to-examples
Add "Redmine Primer" to EXAMPLES
2018-08-13 14:56:00 +02:00
Takeshi KOMIYA
caf57bcc89 Update CHANGES for PR #5280 2018-08-13 21:41:17 +09:00
Takeshi KOMIYA
3e82d09e7e
Merge pull request #5280 from terencehonles/prefer-typing.get_type_hints
change format_args to prefer annotations from typing.get_type_hints
2018-08-13 21:20:09 +09:00
Takeshi KOMIYA
ba97fd4f8d latex: Invoke mendex from perl (for Windows) 2018-08-13 21:16:17 +09:00
Takeshi KOMIYA
718206b19f
Merge pull request #5267 from tk0miya/4911_make_latexpdf_on_windows
Fix #4911: Allow make latexpdf on Windows
2018-08-13 21:15:26 +09:00
MAEDA Go
07ba03650b Add "Redmine Primer" to EXAMPLES 2018-08-13 21:14:56 +09:00
Takeshi KOMIYA
f670a33f5b Fix #5246: Add :confval:singlehtml_sidebars to configure sidebars for singlehtml 2018-08-13 11:04:45 +09:00
Takeshi KOMIYA
b135e7ce4a
Merge pull request #5275 from tk0miya/refactor_latex3
refactor: Move settings for pLaTeX to ADDITIONAL_SETTINGS
2018-08-13 10:46:07 +09:00
Takeshi KOMIYA
9fc753cf64 latex: Set empty string to $LATEXOPTS 2018-08-13 10:41:10 +09:00
Takeshi KOMIYA
2552efea25 Fix #4911: Allow make latexpdf on Windows 2018-08-13 10:41:10 +09:00
Jakob Lykke Andersen
c0e612a608
Merge pull request #5288 from jakobandersen/cpp_attributes_5187
C++, parse attributes on declerators as well.
2018-08-11 19:40:07 +02:00
Jakob Lykke Andersen
61a53b1ceb Fix type check error 2018-08-11 17:28:15 +02:00
Jakob Lykke Andersen
349890266c C++, parse attributes on declerators as well.
Fixes sphinx-doc/sphinx#5187
2018-08-11 16:39:27 +02:00
Jakob Lykke Andersen
928cb3ef06
Merge pull request #5287 from jakobandersen/cpp_5126
C++, add missing isPack for some template params
2018-08-11 11:20:35 +02:00
Jakob Lykke Andersen
4397606d03 C++, fix direct lookup problem
Also clarify documentation regarding cross-references involving templates.

See also sphinx-doc/sphinx#2057
2018-08-11 11:04:56 +02:00
Jakob Lykke Andersen
0af74a76dc C++, add missing isPack for some template params
Fixes sphinx-doc/sphinx#5126
2018-08-11 11:03:42 +02:00
cclauss
72beacb7ae
Remove trailing whitespace 2018-08-11 06:19:08 +02:00
cclauss
4e79cca59f
Force a retest as a workaround to Travis issues 2018-08-11 06:02:06 +02:00
Jakob Lykke Andersen
ef5448e8bc
Merge pull request #5284 from jakobandersen/cpp_char_lit_5147
C++, add support for (most) character literals.
2018-08-10 22:59:22 +02:00
Jakob Lykke Andersen
44127fd13b C++, add support for (most) character literals.
Fixes sphinx-doc/sphinx#5147
2018-08-10 22:13:18 +02:00
Terence D. Honles
da45604485 handle NoneType as None 2018-08-10 11:58:08 -07:00
Terence Honles
742c89f99b change format_args to prefer annotations from typing.get_type_hints
The current code looks for the pattern::

    class Node:
        def parent(self) -> 'Node': pass

This change allows more complex forward references::

    class Node:
        def children(self) -> Set['Node']: pass
2018-08-10 11:58:08 -07:00
cclauss
3cdb1724f9
Appveyor: Test in Python 3.7 instead of Python 3.6 2018-08-10 18:50:02 +02:00
Eduardo Schettino
9cf8aa7739 quickstart: set conf.py pygments_style value to None
Currently quickstart sets a value for `pygments_style`,
this is not desirable because it overrides the theme's default `pygments_style`.
It should be `None` so theme`s value is used by default.
2018-08-10 21:55:37 +08:00
Timotheus Kampik
c48a612485
Merge pull request #5279 from linnekback/5278-format-example-links
#5278: re-format links
2018-08-09 15:20:35 +02:00
Timotheus Kampik
60be8a2684 #5278 remove duplicate & fix markup glitch 2018-08-09 14:50:58 +02:00
Timotheus Kampik
572f081d22 #5278 fix some markup glitches 2018-08-09 13:34:56 +02:00
linnekback
8c050956e3 #5278: re-format links 2018-08-09 13:15:37 +02:00
Takeshi KOMIYA
ea03d0666f
Merge pull request #5274 from tk0miya/refactor_config_Any
Use typing.Any for config type hinting instead
2018-08-08 23:18:08 +09:00
Takeshi KOMIYA
25f6563168
Merge pull request #5263 from tk0miya/create_empty_ind_file_by_perl
latex: Create an empty .ind file by perl (for Windows)
2018-08-08 17:18:30 +09:00
Takeshi KOMIYA
67760128c2 refactor: Move settings for pLaTeX to ADDITIONAL_SETTINGS 2018-08-08 00:37:41 +09:00
Takeshi KOMIYA
6c70214d37
Merge pull request #5260 from tk0miya/graphviz_width_of_svg
Fix #5002: graphviz: SVGs do not adapt to the column width
2018-08-08 00:17:35 +09:00
Takeshi KOMIYA
827dbea009 Use typing.Any for config type hinting instead 2018-08-07 23:18:19 +09:00
Takeshi KOMIYA
b09c54e669
Merge branch 'master' into graphviz_width_of_svg 2018-08-07 23:16:37 +09:00
Takeshi KOMIYA
928b030915
Merge pull request #5156 from rokroskar/use-doc-dir
graphviz: run dot in the document directory
2018-08-07 23:13:55 +09:00
Antti Kaihola
10f01d5539 Fix #5273: doctest: add :skipif: option for doctest directives
This option allows conditional skipping of doctests.
2018-08-07 10:51:49 +03:00