summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-ext-autodoc/target/hide_value.py
blob: 1d53aabe925b70fd45373e0bea5ee4e3de158442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#: 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()