
    ڔ j8                         d Z ddlZddlZddlmZ g Zdedededdfd	Zdefd
Z eddd            eddd            ed e	e          d            e            Z
dS )z=A module for creating docstrings for sphinx ``data`` domains.    N   )NDArraynamevaluedocreturnc                 @    t                               | ||f           dS )zAppend ``_docstrings_list`` with a docstring for `name`.

    Parameters
    ----------
    name : str
        The name of the object.
    value : str
        A string-representation of the object.
    doc : str
        The docstring of the object.

    N)_docstrings_listappend)r   r   r   s      pC:\Users\Terasoftware\OneDrive\Desktop\faahhh\fyndo\fyndo\venv\Lib\site-packages\numpy/_typing/_add_docstring.py
add_newdocr      s%     T5#./////    c                     g } t           D ]U\  }}}t          j        |                              dd          }|                    d          }g }d}|D ]}t          j        d|          }	|	r|rt          j        |                                          }
|
dk    r0d}|                    |		                    d           d|
            n/d}|                    |		                    d           d	|
            |                    d           |                    | |            d
                    |          }d
| d| d| }|                     |           Wd
                    |           S )zaConvert all docstrings in ``_docstrings_list`` into a single
    sphinx-legible text block.

    
z
     z^(\s+)[-=]+\s*$Examplesr   z.. rubric:: z    z.. admonition:: z
.. data:: z
    :value: )r
   textwrapdedentreplacesplitrematchpopr   groupjoin)type_list_retr   r   r   slines	new_linesindentlinemprevs_blocks               r   _parse_docstringsr%      s   
 M, & &eSOC  ((x88 	 	4 	4D+T22A 
4Y 
4y}}77:% LF$$

%F%F%F%FGGGG$F$$

%J%JD%J%JKKK  $$$$  F!2D!2!23333IIi  GGGUGG!GGW%%%%99]###r   	ArrayLikeztyping.Union[...]ag  
    A `~typing.Union` representing objects that can be coerced
    into an `~numpy.ndarray`.

    Among others this includes the likes of:

    * Scalars.
    * (Nested) sequences.
    * Objects implementing the `~class.__array__` protocol.

    .. versionadded:: 1.20

    See Also
    --------
    :term:`array_like`:
        Any scalar or sequence that can be interpreted as an ndarray.

    Examples
    --------
    .. code-block:: python

        >>> import numpy as np
        >>> import numpy.typing as npt

        >>> def as_array(a: npt.ArrayLike) -> np.ndarray:
        ...     return np.array(a)

    	DTypeLikea  
    A `~typing.Union` representing objects that can be coerced
    into a `~numpy.dtype`.

    Among others this includes the likes of:

    * :class:`type` objects.
    * Character codes or the names of :class:`type` objects.
    * Objects with the ``.dtype`` attribute.

    .. versionadded:: 1.20

    See Also
    --------
    :ref:`Specifying and constructing data types <arrays.dtypes.constructing>`
        A comprehensive overview of all objects that can be coerced
        into data types.

    Examples
    --------
    .. code-block:: python

        >>> import numpy as np
        >>> import numpy.typing as npt

        >>> def as_dtype(d: npt.DTypeLike) -> np.dtype:
        ...     return np.dtype(d)

    r   a9  
    A `np.ndarray[tuple[Any, ...], np.dtype[ScalarT]] <numpy.ndarray>`
    type alias :term:`generic <generic type>` w.r.t. its
    `dtype.type <numpy.dtype.type>`.

    Can be used during runtime for typing arrays with a given dtype
    and unspecified shape.

    .. versionadded:: 1.21

    Examples
    --------
    .. code-block:: python

        >>> import numpy as np
        >>> import numpy.typing as npt

        >>> print(npt.NDArray)
        numpy.ndarray[tuple[typing.Any, ...], numpy.dtype[~_ScalarT]]

        >>> print(npt.NDArray[np.float64])
        numpy.ndarray[tuple[typing.Any, ...], numpy.dtype[numpy.float64]]

        >>> NDArrayInt = npt.NDArray[np.int_]
        >>> a: NDArrayInt = np.arange(10)

        >>> def func(a: npt.ArrayLike) -> npt.NDArray[Any]:
        ...     return np.array(a)

    )__doc__r   r   _array_liker   r
   strr   r%   repr_docstrings r   r   <module>r.      s    C C 				              0S 0 03 04 0 0 0 0 $3 $ $ $ $B 
;+	 	 	< 
;+	 	 	> 
9dd7mm	 	 	@  !!r   