a
    IDg,                     @   s   d Z ddlZddlZddlZddlZddlmZ ddlm	Z	m
Z
mZ ddlmZmZ dZeeZdd Zd	d
 Zdd Zdd Zdd Zdd Zi g fddZi g fddZdd Zdd Zdd Zdd ZdS )a  
Customizations for and integration with the Sphinx_ documentation generator.

The :mod:`humanfriendly.sphinx` module uses the `Sphinx extension API`_ to
customize the process of generating Sphinx based Python documentation. To
explore the functionality this module offers its best to start reading
from the :func:`setup()` function.

.. _Sphinx: http://www.sphinx-doc.org/
.. _Sphinx extension API: http://sphinx-doc.org/extdev/appapi.html
    N)get_aliases)compactdedentformat)USAGE_MARKERrender_usage)deprecation_note_callbackenable_deprecation_notesenable_man_roleenable_pypi_roleenable_special_methodsenable_usage_formattingloggerman_role	pypi_rolesetupspecial_methods_callbackusage_message_callbackc                 C   s   t |tjr|rt|j}|rtd|g}|d d}t|dkrNd}	nd}	||t	|	  |
 D ]0\}}
|td|| |td|d	 |
 qlt|d
| dS )aZ  
    Automatically document aliases defined using :func:`~humanfriendly.deprecation.define_aliases()`.

    Refer to :func:`enable_deprecation_notes()` to enable the use of this
    function (you probably don't want to call :func:`deprecation_note_callback()`
    directly).

    This function implements a callback for ``autodoc-process-docstring`` that
    reformats module docstrings to append an overview of aliases defined by the
    module.

    The parameters expected by this function are those defined for Sphinx event
    callback functions (i.e. I'm not going to document them here :-).
    
z.. note:: Deprecated namesz      a+  
                    The following alias exists to preserve backwards compatibility,
                    however a :exc:`~exceptions.DeprecationWarning` is triggered
                    when it is accessed, because this alias will be removed
                    in a future release.
                a2  
                    The following aliases exist to preserve backwards compatibility,
                    however a :exc:`~exceptions.DeprecationWarning` is triggered
                    when they are accessed, because these aliases will be
                    removed in a future release.
                z%s.. data:: %sz%sAlias for :obj:`%s`.   z

N)
isinstancetypes
ModuleTyper   __name__r   joinappendlenr   itemsr   update_lines)appwhatnameobjoptionslinesaliasesblocksindentZexplanationtarget r*   e/mounts/lovelace/software/anaconda3/envs/paleomix/lib/python3.9/site-packages/humanfriendly/sphinx.pyr   4   s    

r   c                 C   s   |  dt dS )aK  
    Enable documenting backwards compatibility aliases using the autodoc_ extension.

    :param app: The Sphinx application object.

    This function connects the :func:`deprecation_note_callback()` function to
    ``autodoc-process-docstring`` events.

    .. _autodoc: http://www.sphinx-doc.org/en/stable/ext/autodoc.html
    autodoc-process-docstringN)connectr   r    r*   r*   r+   r	   e   s    r	   c                 C   s   |  dt dS )z
    Enable the ``:man:`` role for linking to Debian Linux manual pages.

    :param app: The Sphinx application object.

    This function registers the :func:`man_role()` function to handle the
    ``:man:`` role.
    manN)add_roler   r.   r*   r*   r+   r
   s   s    	r
   c                 C   s   |  dt dS )z
    Enable the ``:pypi:`` role for linking to the Python Package Index.

    :param app: The Sphinx application object.

    This function registers the :func:`pypi_role()` function to handle the
    ``:pypi:`` role.
    pypiN)r0   r   r.   r*   r*   r+   r      s    	r   c                 C   s   |  dt dS )a6  
    Enable documenting "special methods" using the autodoc_ extension.

    :param app: The Sphinx application object.

    This function connects the :func:`special_methods_callback()` function to
    ``autodoc-skip-member`` events.

    .. _autodoc: http://www.sphinx-doc.org/en/stable/ext/autodoc.html
    zautodoc-skip-memberN)r-   r   r.   r*   r*   r+   r      s    r   c                 C   s   |  dt dS )aQ  
    Reformat human friendly usage messages to reStructuredText_.

    :param app: The Sphinx application object (as given to ``setup()``).

    This function connects the :func:`usage_message_callback()` function to
    ``autodoc-process-docstring`` events.

    .. _reStructuredText: https://en.wikipedia.org/wiki/ReStructuredText
    r,   N)r-   r   r.   r*   r*   r+   r      s    r   c           	      C   s4   d| }t jj|t j|fd|i|}|gg fS )a  
    Convert a Linux manual topic to a hyperlink.

    Using the ``:man:`` role is very simple, here's an example:

    .. code-block:: rst

        See the :man:`python` documentation.

    This results in the following:

      See the :man:`python` documentation.

    As the example shows you can use the role inline, embedded in sentences of
    text. In the generated documentation the ``:man:`` text is omitted and a
    hyperlink pointing to the Debian Linux manual pages is emitted.
    zhttps://manpages.debian.org/%srefuridocutilsnodes	referenceutilsunescape)	rolerawtexttextlinenoinlinerr$   contentZman_urlr6   r*   r*   r+   r      s    "r   c           	      C   s4   d| }t jj|t j|fd|i|}|gg fS )a  
    Generate hyperlinks to the Python Package Index.

    Using the ``:pypi:`` role is very simple, here's an example:

    .. code-block:: rst

        See the :pypi:`humanfriendly` package.

    This results in the following:

      See the :pypi:`humanfriendly` package.

    As the example shows you can use the role inline, embedded in sentences of
    text. In the generated documentation the ``:pypi:`` text is omitted and a
    hyperlink pointing to the Python Package Index is emitted.
    zhttps://pypi.org/project/%s/r2   r3   )	r9   r:   r;   r<   r=   r$   r>   pypi_urlr6   r*   r*   r+   r      s    "r   c                 C   sB   ddl m} t|  t|  t|  t|  t|  tdd|dS )a  
    Enable all of the provided Sphinx_ customizations.

    :param app: The Sphinx application object.

    The :func:`setup()` function makes it easy to enable all of the Sphinx
    customizations provided by the :mod:`humanfriendly.sphinx` module with the
    least amount of code. All you need to do is to add the module name to the
    ``extensions`` variable in your ``conf.py`` file:

    .. code-block:: python

       # Sphinx extension module names.
       extensions = [
           'sphinx.ext.autodoc',
           'sphinx.ext.doctest',
           'sphinx.ext.intersphinx',
           'humanfriendly.sphinx',
       ]

    When Sphinx sees the :mod:`humanfriendly.sphinx` name it will import the
    module and call its :func:`setup()` function. This function will then call
    the following:

    - :func:`enable_deprecation_notes()`
    - :func:`enable_man_role()`
    - :func:`enable_pypi_role()`
    - :func:`enable_special_methods()`
    - :func:`enable_usage_formatting()`

    Of course more functionality may be added at a later stage. If you don't
    like that idea you may be better of calling the individual functions from
    your own ``setup()`` function.
    r   )__version__T)Zparallel_read_safeZparallel_write_safeversion)Zhumanfriendlyr@   r	   r
   r   r   r   dict)r    r@   r*   r*   r+   r      s    #r   c                 C   s*   t |ddr"t|tjtjfr"dS |S dS )a  
    Enable documenting "special methods" using the autodoc_ extension.

    Refer to :func:`enable_special_methods()` to enable the use of this
    function (you probably don't want to call
    :func:`special_methods_callback()` directly).

    This function implements a callback for ``autodoc-skip-member`` events to
    include documented "special methods" (method names with two leading and two
    trailing underscores) in your documentation. The result is similar to the
    use of the ``special-members`` flag with one big difference: Special
    methods are included but other types of members are ignored. This means
    that attributes like ``__weakref__`` will always be ignored (this was my
    main annoyance with the ``special-members`` flag).

    The parameters expected by this function are those defined for Sphinx event
    callback functions (i.e. I'm not going to document them here :-).
    __doc__NF)getattrr   r   FunctionType
MethodType)r    r!   r"   r#   skipr$   r*   r*   r+   r     s    r   c                 C   s    | r|    q | |  dS )z;Private helper for ``autodoc-process-docstring`` callbacks.N)popextend
splitlines)r%   r;   r*   r*   r+   r     s    
r   c                 C   s:   t |tjr6|r6|d tr6td|}t|| dS )a  
    Reformat human friendly usage messages to reStructuredText_.

    Refer to :func:`enable_usage_formatting()` to enable the use of this
    function (you probably don't want to call :func:`usage_message_callback()`
    directly).

    This function implements a callback for ``autodoc-process-docstring`` that
    reformats module docstrings using :func:`.render_usage()` so that Sphinx
    doesn't mangle usage messages that were written to be human readable
    instead of machine readable. Only module docstrings whose first line starts
    with :data:`.USAGE_MARKER` are reformatted.

    The parameters expected by this function are those defined for Sphinx event
    callback functions (i.e. I'm not going to document them here :-).
    r   r   N)r   r   r   
startswithr   r   r   r   )r    r!   r"   r#   r$   r%   r;   r*   r*   r+   r   #  s    r   )rC   loggingr   Zdocutils.nodesr4   Zdocutils.utilsZhumanfriendly.deprecationr   Zhumanfriendly.textr   r   r   Zhumanfriendly.usager   r   __all__	getLoggerr   r   r   r	   r
   r   r   r   r   r   r   r   r   r   r*   r*   r*   r+   <module>   s*   
1.