£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>
U
    ʗRe                     @   s@   d Z dZdZdZdZdd Zdd Zd	d
 Zdd Zdd Z	dS )a0  
    pygments.plugin
    ~~~~~~~~~~~~~~~

    Pygments setuptools plugin interface. The methods defined
    here also work if setuptools isn't installed but they just
    return nothing.

    lexer plugins::

        [pygments.lexers]
        yourlexer = yourmodule:YourLexer

    formatter plugins::

        [pygments.formatters]
        yourformatter = yourformatter:YourFormatter
        /.ext = yourformatter:YourFormatter

    As you can see, you can define extensions for the formatter
    with a leading slash.

    syntax plugins::

        [pygments.styles]
        yourstyle = yourstyle:YourStyle

    filter plugin::

        [pygments.filter]
        yourfilter = yourfilter:YourFilter


    :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
zpygments.lexerszpygments.formatterszpygments.styleszpygments.filtersc              	   C   s8   zddl m} W n ttfk
r,   g  Y S X || S )N    )pkg_resources)pip._vendorr   ImportErrorOSErroriter_entry_points)
group_namer    r   /builddir/build/BUILDROOT/alt-python38-pip-22.2.1-2.el8.x86_64/opt/alt/python38/lib/python3.8/site-packages/pip/_vendor/pygments/plugin.pyr   +   s
    
r   c                  c   s   t tD ]} |  V  qd S N)r   LEXER_ENTRY_POINTload
entrypointr   r   r	   find_plugin_lexers4   s    r   c                  c   s"   t tD ]} | j|  fV  qd S r
   )r   FORMATTER_ENTRY_POINTnamer   r   r   r   r	   find_plugin_formatters9   s    r   c                  c   s"   t tD ]} | j|  fV  qd S r
   )r   STYLE_ENTRY_POINTr   r   r   r   r   r	   find_plugin_styles>   s    r   c                  c   s"   t tD ]} | j|  fV  qd S r
   )r   FILTER_ENTRY_POINTr   r   r   r   r   r	   find_plugin_filtersC   s    r   N)
__doc__r   r   r   r   r   r   r   r   r   r   r   r   r	   <module>   s   $	