mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch 'stable' into 1.5-release
This commit is contained in:
commit
e5786b888c
1
CHANGES
1
CHANGES
@ -266,6 +266,7 @@ Bugs fixed
|
||||
results in warning / error
|
||||
* #3068: Allow the '=' character in the -D option of sphinx-build.py
|
||||
* #3074: ``add_source_parser()`` crashes in debug mode
|
||||
* #3135: ``sphinx.ext.autodoc`` crashes with plain Callable
|
||||
|
||||
Release 1.4.8 (released Oct 1, 2016)
|
||||
====================================
|
||||
|
1
EXAMPLES
1
EXAMPLES
@ -94,6 +94,7 @@ Documentation using a customized version of the classic theme
|
||||
* NumPy: http://docs.scipy.org/doc/numpy/reference/
|
||||
* OpenCV: http://docs.opencv.org/
|
||||
* Peach^3: http://peach3.nl/doc/latest/userdoc/
|
||||
* Pygame: http://www.pygame.org/docs/
|
||||
* Sage: http://www.sagemath.org/doc/
|
||||
* SciPy: http://docs.scipy.org/doc/scipy/reference/
|
||||
* simuPOP: http://simupop.sourceforge.net/manual_release/build/userGuide.html
|
||||
|
4
doc/_themes/sphinx13/static/sphinx13.css
vendored
4
doc/_themes/sphinx13/static/sphinx13.css
vendored
@ -384,6 +384,10 @@ div.warning ul, div.warning ol {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div.admonition div.highlight {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.viewcode-back {
|
||||
font-family: 'Open Sans', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva',
|
||||
'Verdana', sans-serif;
|
||||
|
@ -317,7 +317,9 @@ def format_annotation(annotation):
|
||||
hasattr(annotation, '__result__'):
|
||||
# Skipped in the case of plain typing.Callable
|
||||
args = annotation.__args__
|
||||
if args is Ellipsis:
|
||||
if args is None:
|
||||
return qualified_name
|
||||
elif args is Ellipsis:
|
||||
args_str = '...'
|
||||
else:
|
||||
formatted_args = (format_annotation(a) for a in args)
|
||||
|
@ -819,7 +819,7 @@ msgstr "Ricerca completata, trovata/e %s pagina/e corrispondenti."
|
||||
|
||||
#: sphinx/themes/basic/static/searchtools.js_t:338
|
||||
msgid ", in "
|
||||
msgstr ", in"
|
||||
msgstr ", in "
|
||||
|
||||
#: sphinx/themes/classic/static/sidebar.js_t:83
|
||||
msgid "Expand sidebar"
|
||||
|
Loading…
Reference in New Issue
Block a user