mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
autodata and autoattribute directives does not show right-hand value of the variable if its docstring contains ``:meta hide-value:`` in info-field-list.
20 lines
260 B
Python
20 lines
260 B
Python
#: docstring
|
|
#:
|
|
#: :meta hide-value:
|
|
SENTINEL1 = object()
|
|
|
|
#: :meta hide-value:
|
|
SENTINEL2 = object()
|
|
|
|
|
|
class Foo:
|
|
"""docstring"""
|
|
|
|
#: docstring
|
|
#:
|
|
#: :meta hide-value:
|
|
SENTINEL1 = object()
|
|
|
|
#: :meta hide-value:
|
|
SENTINEL2 = object()
|