o
    f                     @   s\   d Z g dZddlZddlmZ ddlmZ dddZG d	d
 d
Zdd Z	e Z
e
jZdS )zGRedo the builtin repr() (representation) but with limits on most sizes.)Reprreprrecursive_repr    N)islice)	get_ident...c                    s    fdd}|S )zGDecorator to make a repr function return fillvalue for a recursive callc                    sX   t    fdd}td|_td|_td|_td|_tdi |_|S )Nc              	      sJ   t | t f}|v r S | z| }W | |S | w N)idr   adddiscard)selfkeyresult)	fillvaluerepr_runninguser_function /usr/lib/python3.10/reprlib.pywrapper   s   


z<recursive_repr.<locals>.decorating_function.<locals>.wrapper
__module____doc____name____qualname____annotations__)setgetattrr   r   r   r   r   )r   r   r   )r   r   r   decorating_function   s   z+recursive_repr.<locals>.decorating_functionr   )r   r   r   r   r   r   	   s   r   c                   @   s~   e Zd Zdd Zdd Zdd Zddd	Zd
d Zdd Zdd Z	dd Z
dd Zdd Zdd Zdd Zdd Zdd ZdS ) r   c                 C   sF   d| _ d| _d| _d| _d| _d| _d| _d| _d| _d| _	d| _
d S )N            (   )maxlevelmaxtuplemaxlistmaxarraymaxdictmaxsetmaxfrozensetmaxdeque	maxstringmaxlongmaxother)r   r   r   r   __init__&   s   
zRepr.__init__c                 C   s   |  || jS r   )repr1r#   )r   xr   r   r   r   3   s   z	Repr.reprc                 C   sR   t |j}d|v r| }d|}t| d| r#t| d| ||S | ||S )N _repr_)typer   splitjoinhasattrr   repr_instance)r   r0   leveltypenamepartsr   r   r   r/   6   s   

z
Repr.repr1 c           
         s   t |}|dkr|rd}n,|d  | j fddt||D }	||kr*|	d d|	}|dkr9|r9|| }d|||f S )Nr   r      c                    s   g | ]}| qS r   r   ).0elemnewlevelr/   r   r   
<listcomp>G   s    z'Repr._repr_iterable.<locals>.<listcomp>, z%s%s%s)lenr/   r   appendr6   )
r   r0   r9   leftrightmaxitertrailnspiecesr   r@   r   _repr_iterable@   s   
zRepr._repr_iterablec                 C   s   |  ||dd| jdS )N(),)rM   r$   r   r0   r9   r   r   r   
repr_tupleM   s   zRepr.repr_tuplec                 C      |  ||dd| jS )N[])rM   r%   rQ   r   r   r   	repr_listP      zRepr.repr_listc                 C   s,   |sd|j  S d|j  }| |||d| jS )Nzarray('%s')zarray('%s', []))typecoderM   r&   )r   r0   r9   headerr   r   r   
repr_arrayS   s   

zRepr.repr_arrayc                 C   $   |sdS t |}| ||dd| jS )Nzset(){})_possibly_sortedrM   r(   rQ   r   r   r   repr_setY   s   zRepr.repr_setc                 C   r\   )Nzfrozenset()zfrozenset({z}))r_   rM   r)   rQ   r   r   r   repr_frozenset_   s   zRepr.repr_frozensetc                 C   rS   )Nzdeque([rX   )rM   r*   rQ   r   r   r   
repr_dequef   rW   zRepr.repr_dequec                 C   s   t |}|dkr
dS |dkrdS |d }| j}g }tt|| jD ]}|||}||| |}	|d||	f  q!|| jkrC|d d|}
d|
f S )	Nr   z{}z{...}r=   z%s: %sr   rC   z{%s})rD   r/   r   r_   r'   rE   r6   )r   r0   r9   rJ   rA   r/   rL   r   keyreprvalreprrK   r   r   r   	repr_dicti   s   


zRepr.repr_dictc                 C   s   t |d | j }t|| jkrJtd| jd d }td| jd | }t |d | |t|| d   }|d | d |t|| d   }|S Nr         r   )builtinsr   r+   rD   maxr   r0   r9   rK   ijr   r   r   repr_strx   s   &$zRepr.repr_strc                 C   sh   t |}t|| jkr2td| jd d }td| jd | }|d | d |t|| d   }|S rf   )ri   r   rD   r,   rj   rk   r   r   r   repr_int   s   
$zRepr.repr_intc                 C   s   zt |}W n ty   d|jjt|f  Y S w t|| jkrHtd| jd d }td| jd | }|d | d |t|| d   }|S )Nz<%s instance at %#x>r   rg   rh   r   )	ri   r   	Exception	__class__r   r	   rD   r-   rj   rk   r   r   r   r8      s   $zRepr.repr_instanceN)r<   )r   r   r   r.   r   r/   rM   rR   rV   r[   r`   ra   rb   re   rn   ro   r8   r   r   r   r   r   $   s    

	r   c                 C   s&   zt | W S  ty   t|  Y S w r   )sortedrp   list)r0   r   r   r   r_      s
   
r_   )r   )r   __all__ri   	itertoolsr   _threadr   r   r   r_   aReprr   r   r   r   r   <module>   s    
s	
