o
    gF                  
   @  st  U d Z ddlmZ ddlmZmZmZ ddlZerddl	m
Z
 z1ddlZddlmZ ddlmZmZ ddlmZmZmZ dd	lmZ eegef ZdZd
ed< W n eyd Z zeZW Y dZ[ndZ[ww g Zded< d5ddZd6ddZd7ddZe Z ded< e Z!ded< e Z"ded< d8ddZ#esedu rd9d$d%Z$d:d,d-Z%G d.d/ d/eZ&d;d2d3Z'dS d;d4d3Z'dS )<a  A mypy_ plugin for managing a number of platform-specific annotations.
Its functionality can be split into three distinct parts:

* Assigning the (platform-dependent) precisions of certain `~numpy.number`
  subclasses, including the likes of `~numpy.int_`, `~numpy.intp` and
  `~numpy.longlong`. See the documentation on
  :ref:`scalar types <arrays.scalars.built-in>` for a comprehensive overview
  of the affected classes. Without the plugin the precision of all relevant
  classes will be inferred as `~typing.Any`.
* Removing all extended-precision `~numpy.number` subclasses that are
  unavailable for the platform in question. Most notably this includes the
  likes of `~numpy.float128` and `~numpy.complex256`. Without the plugin *all*
  extended-precision types will, as far as mypy is concerned, be available
  to all platforms.
* Assigning the (platform-dependent) precision of `~numpy.ctypeslib.c_intp`.
  Without the plugin the type will default to `ctypes.c_int64`.

  .. versionadded:: 1.22

Examples
--------
To enable the plugin, one must add it to their mypy `configuration file`_:

.. code-block:: ini

    [mypy]
    plugins = numpy.typing.mypy_plugin

.. _mypy: https://mypy-lang.org/
.. _configuration file: https://mypy.readthedocs.io/en/stable/config_file.html

    )annotations)FinalTYPE_CHECKINGCallableN)Iterable)Type)PluginAnalyzeTypeContext)MypyFile
ImportFrom	Statement)PRI_MEDzNone | ModuleNotFoundErrorMYPY_EX	list[str]__all__returndict[str, str]c                  C  s   dt jfdt jfdt jfdt jfdt jfdt jfdt jfdt jfd	t j	fd
t j
fdt jfg} i }d}| D ]\}}d| jj }| d| d|| d| < q4|S )N	_NBitByte
_NBitShort	_NBitIntC	_NBitIntP_NBitInt	_NBitLong_NBitLongLong	_NBitHalf_NBitSingle_NBitDouble_NBitLongDoubleznumpy._typing   z._nbit_base._Bitz._nbit.)npbyteshortintcintpint_longlonglonghalfsingledouble
longdoubledtypeitemsize)namesretmodulenametypn r4   R/var/www/html/api-tag/env/lib/python3.10/site-packages/numpy/typing/mypy_plugin.py_get_precision_dict:   s$    r6   c                  C  s   g d} dd | D S )N)uint128uint256int128int256float80float96float128float256
complex160
complex192
complex256
complex512c                 S  s   g | ]	}t t|r|qS r4   )hasattrr    ).0ir4   r4   r5   
<listcomp>`   s    z0_get_extended_precision_list.<locals>.<listcomp>r4   )extended_namesr4   r4   r5   _get_extended_precision_listQ   s   rH   strc                  C  s4   t dj} | dkrdS | dkrdS | dkrdS dS )Nr3   rE   c_intlc_longq
c_longlong)r    r,   char)rO   r4   r4   r5   _get_c_intp_nameb   s   rP   r   _PRECISION_DICT_EXTENDED_PRECISION_LIST_C_INTPctxr	   r   c                 C  s2   | \}}}|j dd }td|  }||S )z;Replace a type-alias with a concrete ``NBitBase`` subclass..znumpy._typing._nbit.)r1   splitrQ   
named_type)rT   r2   _apir1   name_newr4   r4   r5   _hookz   s   

r\   iterableIterable[Statement]idintc                 C  s8   t | D ]\}}t|dd|kr|  S qtd|)z>Identify the first ``ImportFrom`` instance the specified `id`.r_   NzBFailed to identify a `ImportFrom` instance with the following id: )	enumerategetattr
ValueError)r]   r_   rE   valuer4   r4   r5   _index   s   re   filer
   r0   importslist[tuple[str, None | str]]Nonec                 C  s<   t |d|d}d|_| j| jfD ]}t||}|||< qdS )z<Override the first `module`-based import with new `imports`.r   )r.   TN)r   is_top_leveldefsrg   re   )rf   r0   rg   
import_objlstrE   r4   r4   r5   _override_imports   s   

rn   c                   @  s$   e Zd ZdZdddZdddZdS )_NumpyPluginz>A mypy plugin for handling versus numpy-specific typing tasks.fullnamerI   r   None | _HookFuncc                 C  s   |t v rtS dS )zSet the precision of platform-specific `numpy.number`
            subclasses.

            For example: `numpy.int_`, `numpy.longlong` and `numpy.longdouble`.
            N)rQ   r\   )selfrp   r4   r4   r5   get_type_analyze_hook   s   z"_NumpyPlugin.get_type_analyze_hookrf   r
   list[tuple[int, str, int]]c                 C  sV   t |jdfg}|jdkrt|ddd tD d |S |jdkr)t|dtd	fgd |S )
a.  Handle all import-based overrides.

            * Import platform-specific extended-precision `numpy.number`
              subclasses (*e.g.* `numpy.float96`, `numpy.float128` and
              `numpy.complex256`).
            * Import the appropriate `ctypes` equivalent to `numpy.intp`.

            rV   numpyz!numpy._typing._extended_precisionc                 S  s   g | ]}||fqS r4   r4   )rD   vr4   r4   r5   rF      s    z4_NumpyPlugin.get_additional_deps.<locals>.<listcomp>)rg   znumpy.ctypeslibctypes_c_intp)r   rp   rn   rR   rS   )rr   rf   r/   r4   r4   r5   get_additional_deps   s   
	
z _NumpyPlugin.get_additional_depsN)rp   rI   r   rq   )rf   r
   r   rt   )__name__
__module____qualname____doc__rs   ry   r4   r4   r4   r5   ro      s    

ro   versiontype[_NumpyPlugin]c                 C  s   t S zAn entry-point for mypy.)ro   r~   r4   r4   r5   plugin      r   c                 C  s   t r   )r   r   r4   r4   r5   r      r   )r   r   )r   r   )r   rI   )rT   r	   r   r   )r]   r^   r_   rI   r   r`   )rf   r
   r0   rI   rg   rh   r   ri   )r~   rI   r   r   )(r}   
__future__r   typingr   r   r   ru   r    collections.abcr   
mypy.typesmypyr   mypy.pluginr   r	   
mypy.nodesr
   r   r   
mypy.buildr   	_HookFuncr   __annotations__ModuleNotFoundErrorexr   r6   rH   rP   rQ   rR   rS   r\   re   rn   ro   r   r4   r4   r4   r5   <module>   s@    !





&