
    1-Ph                          d dl Z ddlmZ d ZdS )    N   )lookforc                 ~    t          | t          j        t                              d          d                            S )aq  Do a keyword search on scikit-image docstrings and print results.

    .. warning::

        This function may also print results that are not part of
        scikit-image's public API.

    Parameters
    ----------
    what : str
        Words to look for.

    Examples
    --------
    >>> import skimage as ski
    >>> ski.util.lookfor('regular_grid')
    Search results for 'regular_grid'
    ---------------------------------
    skimage.util.regular_grid
        Find `n_points` regularly spaced along `ar_shape`.
    skimage.util.lookfor
        Do a keyword search on scikit-image docstrings and print results.
    .r   )_lookforsysmodules__name__split)whats    T/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/skimage/util/lookfor.pyr   r      s,    0 D#+hnnS&9&9!&<=>>>    )r   _vendored.numpy_lookforr   r    r   r   <module>r      s9    



 9 9 9 9 9 9? ? ? ? ?r   