Lines Matching refs:metadata
2108 The metadata itself is stored in a '__metadata__' attribute as a tuple.
2111 def __init__(self, origin, metadata):
2113 metadata = origin.__metadata__ + metadata
2116 self.__metadata__ = metadata
2150 """Add context-specific metadata to a type.
2154 Every other consumer of this type can ignore this metadata and treat
2162 - Access the metadata via the ``__metadata__`` attribute::
2211 metadata = tuple(params[1:])
2212 return _AnnotatedAlias(origin, metadata)