o
    hS                     @   sZ   d dl Z ddlmZ dd ZG dd dZG dd	 d	eZG d
d dZdd Ze Z	dS )    N   )_apic                        fdd}|S )a  
    Decorator for defining the kwdoc documentation of artist properties.

    This decorator can be applied to artist property setter methods.
    The given text is stored in a private attribute ``_kwarg_doc`` on
    the method.  It is used to overwrite auto-generated documentation
    in the *kwdoc list* for artists. The kwdoc list is used to document
    ``**kwargs`` when they are properties of an artist. See e.g. the
    ``**kwargs`` section in `.Axes.text`.

    The text should contain the supported types, as well as the default
    value if applicable, e.g.:

        @_docstring.kwarg_doc("bool, default: :rc:`text.usetex`")
        def set_usetex(self, usetex):

    See Also
    --------
    matplotlib.artist.kwdoc

    c                    s
    | _ | S N)
_kwarg_doc)functext i/var/www/html/construction_image-detection-poc/venv/lib/python3.10/site-packages/matplotlib/_docstring.py	decorator   s   zkwarg_doc.<locals>.decoratorr
   )r	   r   r
   r   r   	kwarg_doc   s   r   c                   @   s    e Zd ZdZdd Zdd ZdS )SubstitutionaG  
    A decorator that performs %-substitution on an object's docstring.

    This decorator should be robust even if ``obj.__doc__`` is None (for
    example, if -OO was passed to the interpreter).

    Usage: construct a docstring.Substitution with a sequence or dictionary
    suitable for performing substitution; then decorate a suitable function
    with the constructed object, e.g.::

        sub_author_name = Substitution(author='Jason')

        @sub_author_name
        def some_function(x):
            "%(author)s wrote this function"

        # note that some_function.__doc__ is now "Jason wrote this function"

    One can also use positional arguments::

        sub_first_last_names = Substitution('Edgar Allen', 'Poe')

        @sub_first_last_names
        def some_function(x):
            "%s %s wrote the Raven"
    c                 O   s   |r|rt d|p|| _d S )Nz+Only positional or keyword args are allowed)	TypeErrorparams)selfargskwargsr
   r
   r   __init__=   s   zSubstitution.__init__c                 C   s   |j rt|j | j |_ |S r   )__doc__inspectcleandocr   )r   r   r
   r
   r   __call__B   s   zSubstitution.__call__N)__name__
__module____qualname__r   r   r   r
   r
   r
   r   r   "   s    r   c                   @   s   e Zd Zdd ZdS )_ArtistKwdocLoaderc              
      s   | ds	t||d td   ddlm}m} z fddt|D \}W n ty: } zt||d }~ww | 	|||S )Nz:kwdocr   )Artistkwdocc                 3   s    | ]
}|j  kr|V  qd S r   )r   ).0clsnamer
   r   	<genexpr>O   s    
z1_ArtistKwdocLoader.__missing__.<locals>.<genexpr>)
endswithKeyErrorlenmatplotlib.artistr   r   r   recursive_subclasses
ValueError
setdefault)r   keyr   r   r    er
   r!   r   __missing__I   s   

z_ArtistKwdocLoader.__missing__N)r   r   r   r-   r
   r
   r
   r   r   H   s    r   c                   @   s(   e Zd ZdZdd Zdd Zdd ZdS )	_ArtistPropertiesSubstitutionaQ  
    A class to substitute formatted placeholders in docstrings.

    This is realized in a single instance ``_docstring.interpd``.

    Use `~._ArtistPropertiesSubstition.register` to define placeholders and
    their substitution, e.g. ``_docstring.interpd.register(name="some value")``.

    Use this as a decorator to apply the substitution::

        @_docstring.interpd
        def some_func():
            '''Replace %(name)s.'''

    Decorating a class triggers substitution both on the class docstring and
    on the class' ``__init__`` docstring (which is a commonly required
    pattern for Artist subclasses).

    Substitutions of the form ``%(classname:kwdoc)s`` (ending with the
    literal ":kwdoc" suffix) trigger lookup of an Artist subclass with the
    given *classname*, and are substituted with the `.kwdoc` of that class.
    c                 C   s   t  | _d S r   )r   r   )r   r
   r
   r   r   n   s   z&_ArtistPropertiesSubstitution.__init__c                 K   s   | j jdi | dS )z
        Register substitutions.

        ``_docstring.interpd.register(name="some value")`` makes "name" available
        as a named parameter that will be replaced by "some value".
        Nr
   )r   update)r   r   r
   r
   r   registerq   s   z&_ArtistPropertiesSubstitution.registerc                 C   s>   |j rt|j | j |_ t|tr|jtjkr| |j |S r   )r   r   r   r   
isinstancetyper   object)r   objr
   r
   r   r   z   s
   
z&_ArtistPropertiesSubstitution.__call__N)r   r   r   r   r   r0   r   r
   r
   r
   r   r.   V   s
    	r.   c                    r   )z;Copy a docstring from another source function (if present).c                    s    j r j | _ | S r   )r   )targetsourcer
   r   do_copy   s   zcopy.<locals>.do_copyr
   )r7   r8   r
   r6   r   copy   s   r9   )
r    r   r   r   dictr   r.   r9   interpdr
   r
   r
   r   <module>   s    &,
