
    |h                         d dl Z ddlmZ d Zy)    N   )lookforc                 h    t        | t        j                  t        j	                  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    S/var/www/html/test/engine/venv/lib/python3.12/site-packages/skimage/util/lookfor.pyr   r      s(    0 D#++hnnS&9!&<=>>    )r   _vendored.numpy_lookforr   r    r   r   <module>r      s    
 9?r   