mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge pull request #10085 from tk0miya/10058_autodoc_class_signature_misleads_autosummary
Fix #10058: autosummary: Imported members are not shown
This commit is contained in:
commit
726f2eaa97
2
CHANGES
2
CHANGES
@ -54,6 +54,8 @@ Bugs fixed
|
|||||||
position-only-arguments
|
position-only-arguments
|
||||||
* #9194: autodoc: types under the "typing" module are not hyperlinked
|
* #9194: autodoc: types under the "typing" module are not hyperlinked
|
||||||
* #10009: autodoc: Crashes if target object raises an error on getting docstring
|
* #10009: autodoc: Crashes if target object raises an error on getting docstring
|
||||||
|
* #10058: autosummary: Imported members are not shown when
|
||||||
|
``autodoc_class_signature = 'separated'``
|
||||||
* #9947: i18n: topic directive having a bullet list can't be translatable
|
* #9947: i18n: topic directive having a bullet list can't be translatable
|
||||||
* #9878: mathjax: MathJax configuration is placed after loading MathJax itself
|
* #9878: mathjax: MathJax configuration is placed after loading MathJax itself
|
||||||
* #9857: Generated RFC links use outdated base url
|
* #9857: Generated RFC links use outdated base url
|
||||||
|
@ -372,8 +372,6 @@ class Autosummary(SphinxDirective):
|
|||||||
location=self.get_location())
|
location=self.get_location())
|
||||||
items.append((display_name, '', '', real_name))
|
items.append((display_name, '', '', real_name))
|
||||||
continue
|
continue
|
||||||
if documenter.options.members and not documenter.check_module():
|
|
||||||
continue
|
|
||||||
|
|
||||||
# try to also get a source code analyzer for attribute docs
|
# try to also get a source code analyzer for attribute docs
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user